fix: fix wrong parameter in upload task
Some checks failed
Go CI Pipeline / ci (push) Has been cancelled
Release Builds / build (darwin, macos-latest) (push) Successful in 29s
Release Builds / build (linux, ubuntu-latest) (push) Successful in 27s
Release Builds / build (windows, windows-latest) (push) Successful in 29s
Release Builds / create_release (push) Failing after 16s

This commit is contained in:
Patryk Hegenberg 2025-06-04 15:18:18 +02:00
parent 9732a0a0ed
commit f9945a2685

View file

@ -85,7 +85,7 @@ jobs:
env: env:
GITEA_TOKEN: ${{ secrets.GITEATOKEN }} GITEA_TOKEN: ${{ secrets.GITEATOKEN }}
with: with:
url: ${{ steps.create_release.outputs.upload_url }} upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./artifacts/workctl-linux/workctl-linux asset_path: ./artifacts/workctl-linux/workctl-linux
asset_name: workctl-linux asset_name: workctl-linux
asset_content_type: application/octet-stream asset_content_type: application/octet-stream
@ -95,7 +95,7 @@ jobs:
env: env:
GITEA_TOKEN: ${{ secrets.GITEATOKEN }}$ GITEA_TOKEN: ${{ secrets.GITEATOKEN }}$
with: with:
url: ${{ steps.create_release.outputs.upload_url }} upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./artifacts/workctl-darwin/workctl-darwin asset_path: ./artifacts/workctl-darwin/workctl-darwin
asset_name: workctl-darwin asset_name: workctl-darwin
asset_content_type: application/octet-stream asset_content_type: application/octet-stream
@ -105,7 +105,7 @@ jobs:
env: env:
GITEA_TOKEN: ${{ secrets.GITEATOKEN }}$ GITEA_TOKEN: ${{ secrets.GITEATOKEN }}$
with: with:
url: ${{ steps.create_release.outputs.upload_url }} upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./artifacts/workctl-windows/workctl-windows.exe asset_path: ./artifacts/workctl-windows/workctl-windows.exe
asset_name: workctl-windows.exe asset_name: workctl-windows.exe
asset_content_type: application/octet-stream asset_content_type: application/octet-stream