19 Commits

Author SHA1 Message Date
96f1a40266 Merge pull request 'bugfix/15-docker-deployment' (#21) from bugfix/15-docker-deployment into main
All checks were successful
Build and Push Docker Image on Release / build-and-push (release) Successful in 3m55s
test-and-lint / test-and-lint (push) Successful in 2m46s
Reviewed-on: #21
2026-06-10 04:31:19 +02:00
959ba7d2d1 Merge branch 'main' into bugfix/15-docker-deployment
Some checks failed
test-and-lint / test-and-lint (pull_request) Failing after 11m49s
2026-06-10 04:31:12 +02:00
c579fc95be Merge remote-tracking branch 'origin/bugfix/15-docker-deployment' into bugfix/15-docker-deployment
Some checks failed
test-and-lint / test-and-lint (pull_request) Has been cancelled
2026-06-10 04:30:30 +02:00
d70aa85f99 tried again to fix #15 (im gonna crash out) 2026-06-10 04:30:27 +02:00
e5276053f2 Merge pull request 'bugfix/15-docker-deployment' (#20) from bugfix/15-docker-deployment into main
Some checks failed
test-and-lint / test-and-lint (push) Has been cancelled
Build and Push Docker Image on Release / build-and-push (release) Has been cancelled
Reviewed-on: #20
2026-06-10 04:27:52 +02:00
9f9386eba8 Merge branch 'main' into bugfix/15-docker-deployment
Some checks failed
test-and-lint / test-and-lint (pull_request) Has been cancelled
2026-06-10 04:27:46 +02:00
1ff7d6b776 Merge remote-tracking branch 'origin/bugfix/15-docker-deployment' into bugfix/15-docker-deployment
Some checks failed
test-and-lint / test-and-lint (pull_request) Has been cancelled
2026-06-10 04:27:13 +02:00
9fd789bb6a tried again to fix #15 2026-06-10 04:27:01 +02:00
043d4c0d5e Merge pull request 'bugfix/15-docker-deployment' (#19) from bugfix/15-docker-deployment into main
Some checks failed
test-and-lint / test-and-lint (push) Has been cancelled
Build and Push Docker Image on Release / build-and-push (release) Failing after 4s
Reviewed-on: #19
2026-06-10 04:23:59 +02:00
59ba5a00e1 Merge branch 'main' into bugfix/15-docker-deployment
Some checks failed
test-and-lint / test-and-lint (pull_request) Has been cancelled
2026-06-10 04:23:52 +02:00
50da145feb Merge remote-tracking branch 'origin/bugfix/15-docker-deployment' into bugfix/15-docker-deployment
Some checks failed
test-and-lint / test-and-lint (pull_request) Has been cancelled
2026-06-10 04:23:21 +02:00
0b5943f792 changed "runs-on" (#15) 2026-06-10 04:23:18 +02:00
ba31c4f582 Merge pull request 'bugfix/15-docker-deployment' (#18) from bugfix/15-docker-deployment into main
Some checks failed
test-and-lint / test-and-lint (push) Has been cancelled
Build and Push Docker Image on Release / build-and-push (release) Failing after 4s
Reviewed-on: #18
2026-06-10 04:20:29 +02:00
370b875df1 Merge branch 'main' into bugfix/15-docker-deployment
Some checks failed
test-and-lint / test-and-lint (pull_request) Has been cancelled
2026-06-10 04:20:20 +02:00
9393004434 Merge remote-tracking branch 'origin/bugfix/15-docker-deployment' into bugfix/15-docker-deployment
Some checks failed
test-and-lint / test-and-lint (pull_request) Has been cancelled
2026-06-10 04:19:25 +02:00
aec68c3ea5 tried to fix #15 again 2026-06-10 04:19:20 +02:00
baad115f01 Merge pull request 'tried to fix #15 again' (#17) from bugfix/15-docker-deployment into main
Some checks failed
test-and-lint / test-and-lint (push) Has been cancelled
Build and Push Docker Image on Release / build-and-push (release) Failing after 33s
Reviewed-on: #17
2026-06-10 03:55:32 +02:00
09e1b2bcdc Merge branch 'main' into bugfix/15-docker-deployment
Some checks failed
test-and-lint / test-and-lint (pull_request) Has been cancelled
2026-06-10 03:55:22 +02:00
2ffe17ca60 tried to fix #15 again
Some checks failed
test-and-lint / test-and-lint (pull_request) Has been cancelled
2026-06-10 03:54:24 +02:00

View File

@@ -6,7 +6,7 @@ on:
jobs: jobs:
build-and-push: build-and-push:
runs-on: ubuntu-latest runs-on: docker-builder
steps: steps:
- name: Checkout repository - name: Checkout repository
@@ -23,16 +23,21 @@ jobs:
- name: Log in to Gitea Container Registry - name: Log in to Gitea Container Registry
run: | run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login git.miaurizius.de \ echo "${{ secrets.REGISTRY_TOKEN }}" | docker login git.miaurizius.de \
--username "${{ gitea.actor }}" \ --username "${{ secrets.REGISTRY_USER }}" \
--password-stdin --password-stdin
- name: Prepare Docker image tags
run: |
IMAGE_REPO="$(echo "git.miaurizius.de/${{ gitea.repository }}" | tr '[:upper:]' '[:lower:]')"
echo "IMAGE_REPO=$IMAGE_REPO" >> "$GITHUB_ENV"
- name: Build and push multi-arch Docker image - name: Build and push multi-arch Docker image
run: | run: |
docker buildx build \ docker buildx build \
--platform linux/amd64,linux/arm64 \ --platform linux/amd64,linux/arm64 \
--file ./Dockerfile \ --file ./Dockerfile \
--tag git.miaurizius.de/${{ gitea.repository }}:latest \ --tag "$IMAGE_REPO:latest" \
--tag git.miaurizius.de/${{ gitea.repository }}:${{ gitea.event.release.tag_name }} \ --tag "$IMAGE_REPO:${{ gitea.event.release.tag_name }}" \
--push \ --push \
. .