CI :: Using binaries from EVMC release #96
Workflow file for this run
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: "Build_Test_Deploy" | ||
on: | ||
workflow_dispatch: | ||
# Just run it | ||
pull_request: | ||
branches: [main, develop] | ||
paths-ignore: | ||
- "**/README.md" | ||
push: | ||
branches: [main, develop] | ||
tags: | ||
- "v*" | ||
paths-ignore: | ||
- "**/README.md" | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
env: | ||
EVM_DEPLOYER: ${{ secrets.EVM_DEPLOYER }} | ||
jobs: | ||
build-test-deploy: | ||
uses: ./.github/workflows/build-test.yml | ||
Check failure on line 26 in .github/workflows/build-test-deploy.yml GitHub Actions / Build_Test_DeployInvalid workflow file
|
||
with: | ||
installation-method: upgrade | ||
secrets: | ||
EVM_DEPLOYER: ${{ secrets.EVM_DEPLOYER }} | ||
GH_PKG_LOGIN: ${{ secrets.GH_PKG_LOGIN }} | ||
GH_PKG_TOKEN: ${{ secrets.GH_PKG_TOKEN }} | ||
GH_TMP_TOKEN: ${{ secrets.GH_TEMP_RO_TOKEN }} | ||
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} |