ci: fix using wrong variable name in release.yml #29
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- "README.md" | |
- "CHANGELOG.md" | |
- ".gitignore" | |
tags-ignore: | |
# This will ignore release versions tagged with a version identifier. We'll | |
# use a separate workflow for them. | |
- "v*" | |
pull_request: | |
paths-ignore: | |
- README.md | |
- "CHANGELOG.md" | |
- ".gitignore" | |
jobs: | |
build: | |
uses: ./.github/workflows/build.yml | |
with: | |
artifact-suffix: ${{ github.sha }} |