Add container-building Actions workflows #4
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 Container Images | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Apptainer | |
run: | | |
.github/scripts/install_apptainer.sh | |
- name: Check Apptainer installation | |
run: apptainer --version | |
- name: Build images | |
run: | | |
.github/scripts/build_container_images.sh |