fix(cicd): removed upload step

This commit is contained in:
Sebastian Rust
2026-02-06 10:59:43 +01:00
parent 7d34eb34ce
commit 5886687635

View File

@@ -47,23 +47,13 @@ jobs:
- name: Upload to release storage - name: Upload to release storage
run: | run: |
# Option 1: Upload to Gitea generic packages curl -fsS -X PUT \
curl -X PUT \
-H "Authorization: token ${{ secrets.DEPLOY_TOKEN }}" \ -H "Authorization: token ${{ secrets.DEPLOY_TOKEN }}" \
-T bootstrap.run \ -T bootstrap.run \
"${{ github.server_url }}/api/packages/${{ github.repository_owner }}/generic/bootstrap/latest/bootstrap.run" "${{ github.server_url }}/api/packages/${{ github.repository_owner }}/generic/bootstrap/latest/bootstrap.run"
curl -X PUT \ curl -fsS -X PUT \
-H "Authorization: token ${{ secrets.DEPLOY_TOKEN }}" \ -H "Authorization: token ${{ secrets.DEPLOY_TOKEN }}" \
-T bootstrap.run.sha256 \ -T bootstrap.run.sha256 \
"${{ github.server_url }}/api/packages/${{ github.repository_owner }}/generic/bootstrap/latest/bootstrap.run.sha256" "${{ github.server_url }}/api/packages/${{ github.repository_owner }}/generic/bootstrap/latest/bootstrap.run.sha256"
# Alternative: Upload as artifact (for manual download)
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: bootstrap-bundle
path: |
bootstrap.run
bootstrap.run.sha256
retention-days: 90