ci: hardcode SERVER_URL as a workflow env var instead of an Actions variable

This commit is contained in:
2026-09-21 19:10:24 +02:00
parent b2c2a8d80b
commit 1ee83aad37
+4 -1
View File
@@ -4,6 +4,9 @@ on:
push:
branches: [main]
env:
SERVER_URL: https://git.arthurerlich.de
jobs:
release:
runs-on: ubuntu-latest
@@ -76,7 +79,7 @@ jobs:
if: steps.version.outputs.skip == 'false'
uses: akkuman/gitea-release-action@v1
with:
server_url: ${{ vars.SERVER_URL }}
server_url: ${{ env.SERVER_URL }}
token: ${{ secrets.RELEASE_TOKEN }}
tag_name: ${{ steps.version.outputs.tag }}
name: ${{ steps.version.outputs.tag }}