fix: fix renovate to update version in snapcraft.yaml too #2
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: Test build Snap | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: snapcore/action-build@v1 | |
id: snapcraft | |
required_status_checks: | |
name: Required Build Test Status Check | |
runs-on: ubuntu-latest | |
needs: | |
- build-test | |
if: always() && !cancelled() | |
timeout-minutes: 5 | |
steps: | |
- run: | | |
[ '${{ needs.build-test.result }}' = 'success' ] || (echo build-test failed && false) |