Compare commits

..

No commits in common. "main" and "v0.1.2" have entirely different histories.
main ... v0.1.2

View file

@ -18,7 +18,7 @@ jobs:
- name: ⚙️ Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.25
go-version: 1.24
- name: ⚙️ Install dependencies
run: |
@ -34,7 +34,7 @@ jobs:
echo "Creating release for ${{ env.GITHUB_REPOSITORY}} with tag ${{ env.GITHUB_REF_NAME }}"
REQUEST=$(curl --fail --request POST \
REQUEST=$(curl --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 --fail --request POST \
curl --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}}'