3 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
domrichardson
0849b8f27d feat: more workflow fixes
Some checks failed
Build and Push App Image / build-and-push (push) Failing after 1m31s
2026-03-24 16:21:46 +00:00
domrichardson
5c52e846d9 fixed workflow
Some checks failed
Build and Push App Image / build-and-push (push) Failing after 1m13s
2026-03-24 16:15:57 +00:00

View File

@@ -15,22 +15,24 @@ env:
jobs:
build-and-push:
runs-on: ubuntu-latest
runs-on: ubuntu-docker
container: docker:dind
steps:
- name: install nodejs
run: apk add --update nodejs npm
- name: Checkout
uses: actions/checkout@v4
- name: Set image tags
id: vars
shell: bash
shell: sh
run: |
SHORT_SHA="${GITHUB_SHA::7}"
BRANCH="${GITHUB_REF_NAME//\//-}"
SHORT_SHA=$(printf '%s' "$GITHUB_SHA" | cut -c1-7)
BRANCH=$(printf '%s' "$GITHUB_REF_NAME" | tr '/' '-')
echo "short_sha=${SHORT_SHA}" >> "$GITHUB_OUTPUT"
echo "branch=${BRANCH}" >> "$GITHUB_OUTPUT"
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Login to Gitea Container Registry
uses: docker/login-action@v3
with: