Bump version from 0.1.5 to 0.1.6 #2
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: Build Container Images | |
| on: | |
| push: | |
| tags: | |
| - v* | |
| workflow_dispatch: | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| GHCR_USERNAME: ${{ secrets.GHCR_USERNAME }} | |
| jobs: | |
| build_containers: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| packages: write | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Create Artifacts Directory | |
| run: mkdir artifacts | |
| - name: Install Apptainer | |
| run: | | |
| .github/scripts/install_apptainer.sh | |
| - name: Check Apptainer installation | |
| run: apptainer --version | |
| - name: Install Wave CLI | |
| run: | | |
| .github/scripts/install_wave-cli.sh | |
| - name: Check wave installation | |
| run: wave --version | |
| - name: Build images | |
| run: | | |
| .github/scripts/build_container_images_wave.sh | |
| - name: Upload Artifacts | |
| uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: artifacts-BCCDC-PHL-mlst-nf-build-containers-${{ github.run_id }}.${{ github.run_attempt }} | |
| path: artifacts |