diff --git a/.github/workflows/build_deploy_container.yaml b/.github/workflows/build_deploy_container.yaml index 870f126..48290ea 100644 --- a/.github/workflows/build_deploy_container.yaml +++ b/.github/workflows/build_deploy_container.yaml @@ -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: | @@ -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 @@ -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() }}