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 42fc0e5 commit d29ba8bCopy full SHA for d29ba8b
1 file changed
.github/workflows/container.yml
@@ -1,4 +1,4 @@
1
-name: Singularity Build (docker)
+name: Singularity Build (within a docker instance)
2
on:
3
workflow_dispatch:
4
push:
@@ -97,7 +97,7 @@ jobs:
97
env:
98
keepgoing: ${{ env.keepgoing }}
99
run: |
100
- if [[ "${keepgoing}" == "true" ]]; then
+ if [ "${keepgoing}" = "true" ]; then
101
echo "${{ secrets.GITHUB_TOKEN }}" | singularity remote login -u "${{ secrets.GHCR_USERNAME }}" --password-stdin oras://ghcr.io
102
declare -a tags=( ${{ needs.gather-metadata.outputs.tags }} )
103
for tag in "${tags[@]}" ; do
0 commit comments