3 Commits
0.0.8 ... 0.0.9

Author SHA1 Message Date
Stephen Simpson
f8d598fc29 Remove redundant registry retrieval step and use environment variable directly in Docker workflow
Some checks failed
Build and publish Docker image / build-and-push (push) Failing after 4m37s
Signed-off-by: Stephen Simpson <ssimpson89@users.noreply.github.com>
2025-10-27 09:21:05 -05:00
Stephen Simpson
95854ddd05 Refactor registry handling in Docker workflow to use RUNNER_REGISTRY environment variable
Some checks failed
Build and publish Docker image / build-and-push (push) Failing after 3m46s
Signed-off-by: Stephen Simpson <ssimpson89@users.noreply.github.com>
2025-10-24 12:33:56 -05:00
d97dc0d987 Update .gitea/workflows/docker-image-linux.yml
Some checks failed
Build and publish Docker image / build-and-push (push) Failing after 4m10s
2025-10-22 21:46:14 -05:00

View File

@@ -10,14 +10,11 @@ on:
workflow_dispatch:
env:
REGISTRY: gitea.sjs.io
IMAGE_NAME: rocky-dev
jobs:
build-and-push:
runs-on: ubuntu-latest
container:
image: gitea/runner-images:ubuntu-latest
permissions:
contents: read
@@ -36,7 +33,7 @@ jobs:
- name: Log in to registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
registry: ${{ vars.REGISTRY }}
username: ${{ vars.USERNAME }}
password: ${{ secrets.PASS }}
@@ -44,7 +41,7 @@ jobs:
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ vars.USERNAME }}/${{ env.IMAGE_NAME }}
images: ${{ vars.REGISTRY }}/${{ vars.USERNAME }}/${{ env.IMAGE_NAME }}
tags: |
# Only tag with version and latest on tag push
type=semver,pattern={{version}},enable=${{ startsWith(github.ref, 'refs/tags/') }}