4 Commits
Author SHA1 Message Date
wayfinderak 768f4ae991 Merge pull request 'Disable unsupported optional GitHub uploads on Gitea' (#2) from fix/gitea-optional-uploads-20260911 into main
Build and Push Container / docker (push) Successful in 3m31s
2026-09-11 10:46:20 +00:00
wayfinderak 648bb34237 fix(ci): disable optional GitHub build-record and QEMU cache uploads
Build and Push Container / docker (pull_request) Successful in 3m16s
2026-09-11 10:25:22 +00:00
wayfinderak 4ec10db3bc Merge pull request 'Scope delivery checks and isolate build jobs' (#1) from feat/delivery-streamlining-20260911 into main
Build and Push Container / docker (push) Successful in 10m20s
2026-09-11 09:46:28 +00:00
wayfinderak 5e6f5bd518 Resolve upstream Actions explicitly and check out the exact event revision
Build and Push Container / docker (pull_request) Successful in 10m14s
2026-09-11 09:14:35 +00:00
+9 -5
View File
@@ -25,7 +25,7 @@ jobs:
runs-on: butler-ci
steps:
- name: Checkout
uses: actions/checkout@v4
uses: https://github.com/actions/checkout@v4
- name: Select relevant delivery work
id: delivery
@@ -39,15 +39,17 @@ jobs:
bash scripts/ci-select.sh
- name: Set up QEMU
if: ${{ steps.delivery.outputs.run == 'true' }}
uses: docker/setup-qemu-action@v3
uses: https://github.com/docker/setup-qemu-action@v3
with:
cache-image: "false"
- name: Set up Docker Buildx
if: ${{ steps.delivery.outputs.run == 'true' }}
uses: docker/setup-buildx-action@v3
uses: https://github.com/docker/setup-buildx-action@v3
- name: Log in to Gitea registry
if: ${{ (steps.delivery.outputs.run == 'true') && github.event_name != 'pull_request' }}
uses: docker/login-action@v3
uses: https://github.com/docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ secrets.REGISTRY_USERNAME }}
@@ -79,7 +81,9 @@ jobs:
- name: Build and push image
if: ${{ steps.delivery.outputs.run == 'true' }}
uses: docker/build-push-action@v6
uses: https://github.com/docker/build-push-action@v6
env:
DOCKER_BUILD_RECORD_UPLOAD: "false"
with:
context: .
push: ${{ github.event_name != 'pull_request' }}