fix: update release macos actions
This commit is contained in:
parent
01d0ba9811
commit
2863d7cab7
|
@ -23,14 +23,14 @@ jobs:
|
|||
shell: bash
|
||||
run: |
|
||||
tag=$(echo ${{ matrix.platform }} | sed -e 's/\//_/g')
|
||||
echo "tag={$tag}" >> "$GITHUB_OUTPUT"
|
||||
echo "tag=$tag" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Normalise version tag
|
||||
id: normalise_version
|
||||
shell: bash
|
||||
run: |
|
||||
version=$(echo ${{ github.event.release.tag_name }} | sed -e 's/v//g')
|
||||
echo "version={$version}" >> "$GITHUB_OUTPUT"
|
||||
echo "version=$version" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Setup Go
|
||||
uses: actions/setup-go@v4
|
||||
|
@ -85,7 +85,7 @@ jobs:
|
|||
run: |
|
||||
curl -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" "https://api.github.com/repos/${GITHUB_REPOSITORY}/releases" > /tmp/releases.json
|
||||
url=$(jq -r '.[0].upload_url' /tmp/releases.json)
|
||||
echo "url={$url}" >> "$GITHUB_OUTPUT"
|
||||
echo "url=$url" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-release-asset@v1.0.2
|
||||
|
|
Loading…
Reference in New Issue