From 5cd812ea0d343029dbc7febedc00790258aa4099 Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Wed, 12 Nov 2025 12:37:13 -0500 Subject: [PATCH] WIP: Try ci again. --- .gitea/workflows/ci.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 3df42b4..7bce41a 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -28,11 +28,15 @@ jobs: # Uses the `docker/login-action` action to log in to the Container registry registry using the account # and password that will publish the packages. Once published, the packages are scoped to the account defined here. - name: Log in to the Container registry - uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 + uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ gitea.actor }} password: ${{ secrets.CONTAINER_TOKEN }} + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 # This step uses [docker/metadata-action](https://github.com/docker/metadata-action#about) to extract tags and labels # that will be applied to the specified image. The `id` "meta" allows the output of this step to be referenced in a # subsequent step. The `images` value provides the base name for the tags and labels. @@ -52,7 +56,7 @@ jobs: # It uses the `tags` and `labels` parameters to tag and label the image with the output from the "meta" step. - name: Build and push Docker image id: push - uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4 + uses: docker/build-push-action@v6 with: context: . file: Dockerfile