caca
Publish Docker Image / test (push) Successful in 43s
Publish Docker Image / build-and-push (push) Failing after 1m14s

This commit is contained in:
2026-05-31 00:45:23 +02:00
parent 575dbc1854
commit e573055766
+2 -3
View File
@@ -65,11 +65,10 @@ jobs:
run: |
git config user.email "action@gitea.nasvincent.com"
git config user.name "Gitea Action"
git tag ${{ steps.version.outputs.new_version }}
git push origin ${{ steps.version.outputs.new_version }}
git tag ${{ steps.version.outputs.new_version }} && git push origin ${{ steps.version.outputs.new_version }} || echo "Tag already exists, skipping"
- name: Save new minor version
run: |
curl -s -X PUT "https://gitea.nasvincent.com/api/v1/repos/${{ github.repository }}/actions/variables/VERSION_MINOR" \
curl -sf -X PUT "https://gitea.nasvincent.com/api/v1/repos/${{ github.repository }}/actions/variables/VERSION_MINOR" \
-H "Authorization: token ${{ secrets.TOKEN }}" \
-H "Content-Type: application/json" \
-d "{\"value\": \"${{ steps.version.outputs.new_minor }}\"}"