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: Build apptainer image | |
on: | |
release: | |
types: [published] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: checkout files in repo | |
uses: actions/checkout@main | |
- name: setup apptainer | |
uses: eWaterCycle/setup-apptainer@v2 | |
- name: build image | |
run: singularity build container.sif .github/apptainer/conda_environment.def | |
# container registries require lowercase repo names. | |
# https://github.com/orgs/community/discussions/25768 | |
- name: lowercase repo name | |
run: echo "REPO=${GITHUB_REPOSITORY,,}" >>${GITHUB_ENV} | |
# https://hsf-training.github.io/hsf-training-singularity-webpage/09-bonus-episode/index.html | |
- name: push to registry | |
run: | | |
echo ${{ secrets.GITHUB_TOKEN }} | singularity remote login -u ${{ secrets.GHCR_USERNAME }} --password-stdin oras://ghcr.io | |
singularity push container.sif oras://ghcr.io/${REPO}:${{ github.ref_name }} | |
singularity push container.sif oras://ghcr.io/${REPO}:latest |