Skip to content

Commit 0dc7db9

Browse files
committed
Continue trying to perfect workflow
1 parent ddafa71 commit 0dc7db9

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/build-api-v3.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,12 @@ jobs:
6363
# Add a link to the built artifact to the workflow summary
6464
- name: Add link to workflow summary
6565
run: |
66-
echo "## Docker Image Built" >> $GITHUB_STEP_SUMMARY
66+
echo "## Image Built" >> $GITHUB_STEP_SUMMARY
6767
echo "" >> $GITHUB_STEP_SUMMARY
68-
echo "The Docker image has been built and pushed to [OSG Harbor](https://hub.opensciencegrid.org/harbor/projects/887/repositories/api-v3/artifacts-tab/artifacts/sha256:${{ steps.build-and-push.outputs.digest }})" >> $GITHUB_STEP_SUMMARY
68+
echo "The image has been built and pushed to [OSG Harbor](https://hub.opensciencegrid.org/harbor/projects/887/repositories/api-v3/artifacts-tab/artifacts/${{ steps.build-and-push.outputs.digest }})" >> $GITHUB_STEP_SUMMARY
6969
echo "" >> $GITHUB_STEP_SUMMARY
7070
echo "### Tags:" >> $GITHUB_STEP_SUMMARY
71-
for tag in (${{ steps.meta.outputs.tags }}); do
72-
echo "- \`$tag\`" >> $GITHUB_STEP_SUMMARY
71+
var="${{ steps.meta.outputs.tags }}"
72+
for tag in $var; do
73+
echo "- \`$tag\`" >> $GITHUB_STEP_SUMMARY
7374
done

0 commit comments

Comments
 (0)