docs: Add mainnet v3.1 upgrade binaries.json file + Dockerfile format… #4325
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: "Workflow Dispatch" | |
on: push | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
call-lint: | |
name: "Lint" | |
uses: ./.github/workflows/lint.yml | |
secrets: inherit | |
call-build: | |
name: "Build" | |
uses: ./.github/workflows/build.yml | |
secrets: inherit | |
call-test: | |
name: "Tests" | |
needs: [ call-lint, call-build ] | |
uses: ./.github/workflows/test.yml | |
secrets: inherit | |
call-release: | |
name: "Release" | |
needs: call-test | |
if: ${{ github.ref_protected == true }} | |
uses: ./.github/workflows/release.yml | |
secrets: inherit |