Compare commits

..

2 Commits

Author SHA1 Message Date
Dreaded_X 98c75f5e78 fix: Uppercase not allowed in image name 2026-07-14 06:24:52 +02:00
Dreaded_X 4125e510c4 fix: Source epoch causes issues with caching 2026-07-14 06:23:50 +02:00
+3 -2
View File
@@ -15,7 +15,7 @@ on:
value: ${{ jobs.build.outputs.images }} value: ${{ jobs.build.outputs.images }}
env: env:
OCI_REPO: git.huizinga.dev/${{ gitea.repository_owner}}/${{gitea.event.repository.name}} OCI_REPO_INITIAL: git.huizinga.dev/${{ gitea.repository_owner}}/${{gitea.event.repository.name}}
jobs: jobs:
build: build:
@@ -27,10 +27,11 @@ jobs:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Set timestamp and release version - name: Setup env
run: | run: |
git fetch --prune --unshallow --tags --force git fetch --prune --unshallow --tags --force
echo "RELEASE_VERSION=$(git describe --always --dirty='--modified')" >> $GITHUB_ENV echo "RELEASE_VERSION=$(git describe --always --dirty='--modified')" >> $GITHUB_ENV
echo "OCI_REPO=${OCI_REPO_INITIAL,,}" >>${GITHUB_ENV}
- name: Login to registry - name: Login to registry
uses: docker/login-action@v3 uses: docker/login-action@v3