Compare commits

...

3 commits
v0.1.2 ... main

Author SHA1 Message Date
7ff3af5044 Merge remote-tracking branch 'origin/main'
All checks were successful
Release Secrets Manager Action / build (push) Successful in 45s
2025-12-29 14:38:39 +01:00
711a42a2dc fix: add fail option to curl command 2025-12-29 14:38:35 +01:00
e27b45620d fix: add fail option to curl command 2025-12-29 14:37:52 +01:00

View file

@ -18,7 +18,7 @@ jobs:
- name: ⚙️ Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.24
go-version: 1.25
- name: ⚙️ Install dependencies
run: |
@ -34,7 +34,7 @@ jobs:
echo "Creating release for ${{ env.GITHUB_REPOSITORY}} with tag ${{ env.GITHUB_REF_NAME }}"
REQUEST=$(curl --request POST \
REQUEST=$(curl --fail --request POST \
--url ${{ env.GITHUB_API_URL }}/repos/${{ env.GITHUB_REPOSITORY }}/releases \
--header 'Authorization: token ${{ secrets.GIT_TOKEN }}' \
--header 'content-type: application/json' \
@ -46,7 +46,7 @@ jobs:
echo "Uploading release asset for Release ID ${RELEASE_ID}"
curl --request POST \
curl --fail --request POST \
--url ${{ env.GITHUB_API_URL }}/repos/${{ env.GITHUB_REPOSITORY }}/releases/${RELEASE_ID}/assets?name=${{ env.build_name }} \
--header 'Authorization: token ${{ secrets.GIT_TOKEN }}' \
-F 'attachment=@${{ env.build_name}}'