1 Commits

Author SHA1 Message Date
domrichardson
3bfdf24fff feat: more workflow fixes
All checks were successful
Build and Push App Image / build-and-push (push) Successful in 59s
2026-03-24 16:25:53 +00:00

View File

@@ -24,10 +24,10 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Set image tags - name: Set image tags
id: vars id: vars
shell: bash shell: sh
run: | run: |
SHORT_SHA="${GITHUB_SHA::7}" SHORT_SHA=$(printf '%s' "$GITHUB_SHA" | cut -c1-7)
BRANCH="${GITHUB_REF_NAME//\//-}" BRANCH=$(printf '%s' "$GITHUB_REF_NAME" | tr '/' '-')
echo "short_sha=${SHORT_SHA}" >> "$GITHUB_OUTPUT" echo "short_sha=${SHORT_SHA}" >> "$GITHUB_OUTPUT"
echo "branch=${BRANCH}" >> "$GITHUB_OUTPUT" echo "branch=${BRANCH}" >> "$GITHUB_OUTPUT"