fix: move to audit instead of block (#116) #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish dev release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build and attach .deb and .whl package | |
if: github.repository == 'pantos-io/validatornode' | |
uses: ./.github/workflows/build.yml | |
secrets: 'inherit' | |
publish-docker: | |
uses: ./.github/workflows/publish-docker.yaml | |
if: github.repository == 'pantos-io/validatornode' | |
needs: build | |
secrets: 'inherit' | |
with: | |
tag: development | |
environment: main | |
test: | |
needs: publish-docker | |
uses: pantos-io/e2e-testing/.github/workflows/ci.yaml@main |