.gitea/workflows/release.yml aktualisiert

checkout geändert
This commit is contained in:
2026-03-02 10:16:43 +01:00
parent 60d792cdb1
commit 4e1719472b

View File

@@ -9,7 +9,14 @@ jobs:
release:
runs-on: alpine-latest
steps:
- uses: actions/checkout@v3
- name: Checkout
run: |
curl -s -L \
-H "Authorization: token ${{ secrets.GITEA_TOKEN }}" \
"${{ vars.GITEA_URL }}/api/v1/repos/${{ github.repository }}/archive/${{ github.sha }}.tar.gz" \
-o repo.tar.gz
tar -xzf repo.tar.gz --strip-components=1
rm repo.tar.gz
- name: Install dependencies
run: apk add --no-cache zip curl