correction config release

This commit is contained in:
2026-05-23 23:31:44 +02:00
parent 1f34567751
commit 13958be53e
+6 -2
View File
@@ -20,11 +20,15 @@ jobs:
username: ${{ gitea.actor }} username: ${{ gitea.actor }}
password: ${{ secrets.RELEASE_TOKEN }} password: ${{ secrets.RELEASE_TOKEN }}
- name: Set lowercase repo name
id: repo
run: echo "name=$(echo '${{ gitea.repository }}' | tr '[:upper:]' '[:lower:]')" >> $GITHUB_OUTPUT
- name: Build and push - name: Build and push
uses: https://github.com/docker/build-push-action@v6 uses: https://github.com/docker/build-push-action@v6
with: with:
context: . context: .
push: true push: true
tags: | tags: |
git.goutailler-olivier.com/${{ gitea.repository_lower }}:${{ gitea.ref_name }} git.goutailler-olivier.com/${{ steps.repo.outputs.name }}:${{ gitea.ref_name }}
git.goutailler-olivier.com/${{ gitea.repository_lower }}:latest git.goutailler-olivier.com/${{ steps.repo.outputs.name }}:latest