Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build_deploy_container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:

- name: Convert Docker Image to Singularity SIF
run: |
apptainer pull --disable-cache --tmpdir $RUNNER_TEMP/singularity image.sif docker://${DOCKER_IMAGE_NAME}:latest
apptainer pull --disable-cache --tmpdir $RUNNER_TEMP/singularity /mnt/genopred_image.sif docker://${DOCKER_IMAGE_NAME}:latest

- name: Install expect
run: |
Expand All @@ -101,7 +101,7 @@ jobs:
- name: Sign the Singularity Image
run: |
expect -c '
spawn apptainer sign image.sif
spawn apptainer sign /mnt/genopred_image.sif
expect "Enter your key passphrase : "
send -- "${{ secrets.SIGNING_KEY_PASSWORD }}\r"
expect eof
Expand All @@ -117,7 +117,7 @@ jobs:

- name: Push Singularity Image to Singularity Library
run: |
apptainer push image.sif $SINGULARITY_IMAGE_NAME:latest
apptainer push /mnt/genopred_image.sif $SINGULARITY_IMAGE_NAME:latest

- name: Setup tmate session
if: ${{ failure() }}
Expand Down
Loading