We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 116eada commit fe03756Copy full SHA for fe03756
.github/workflows/deploy-image.yml
@@ -77,5 +77,9 @@ jobs:
77
- name: Build an apptainer image
78
run: apptainer build --build-arg PYBIOCLIP_VERSION=${{ steps.meta.outputs.version }} apptainer.sif apptainer.def
79
80
+ - name: create lowercase image name
81
+ id: lowercase
82
+ run: echo "LC_IMAGE_NAME=${IMAGE_NAME,,}" >> "$GITHUB_OUTPUT"
83
+
84
- name: Publish apptainer image
- run: apptainer push apptainer.sif oras://${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-sif:${{ steps.meta.outputs.version }}
85
+ run: apptainer push apptainer.sif oras://${{ env.REGISTRY }}/${{ steps.lowercase.outputs.LC_IMAGE_NAME }}-sif:${{ steps.meta.outputs.version }}
0 commit comments