Skip to content

Commit d29ba8b

Browse files
committed
Minor fix in final step of container building
1 parent 42fc0e5 commit d29ba8b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/container.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Singularity Build (docker)
1+
name: Singularity Build (within a docker instance)
22
on:
33
workflow_dispatch:
44
push:
@@ -97,7 +97,7 @@ jobs:
9797
env:
9898
keepgoing: ${{ env.keepgoing }}
9999
run: |
100-
if [[ "${keepgoing}" == "true" ]]; then
100+
if [ "${keepgoing}" = "true" ]; then
101101
echo "${{ secrets.GITHUB_TOKEN }}" | singularity remote login -u "${{ secrets.GHCR_USERNAME }}" --password-stdin oras://ghcr.io
102102
declare -a tags=( ${{ needs.gather-metadata.outputs.tags }} )
103103
for tag in "${tags[@]}" ; do

0 commit comments

Comments
 (0)