release: 0.4.0 #570
Workflow file for this run
This file contains hidden or 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: Check WAVS Image Version | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| # Ensures that only a single workflow per PR will run at a time. Cancels in-progress jobs if new commit is pushed. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| script: | |
| runs-on: ubuntu-latest | |
| env: | |
| DEBUGGING: true | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install bash | |
| run: sudo apt-get install bash | |
| - name: Make script executable | |
| run: chmod +x .github/single-wavs-image-verifier.bash | |
| - name: Run script | |
| run: bash .github/single-wavs-image-verifier.bash |