Skip to content

Commit

Permalink
fix tag
Browse files Browse the repository at this point in the history
  • Loading branch information
acocalypso committed Apr 8, 2024
1 parent 6dce98d commit f0b7881
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
run: |
current_date=$(date -u +"%Y-%m-%dT%H:%M:%SZ")
app_name="stellarium-goto"
tag="app-${{ steps.get_version.outputs.version }}"
tag="app-v${{ steps.get_version.outputs.version }}"
echo '{
"version": "${{ steps.get_version.outputs.version }}",
Expand All @@ -89,19 +89,19 @@ jobs:
"platforms": {
"linux-x86_64": {
"signature": "'"$content_of_linux_signature"'",
"url": "https://github.com/${{ github.repository }}/releases/download/'"$tag"'/'"$app_name"'_${{ steps.get_version.outputs.version }}_amd64..AppImage"
"url": "https://github.com/${{ github.repository }}/releases/download/'"$tag"'/'"$app_name"'_${{ steps.get_version.outputs.version }}_amd64.AppImage"
},
"darwin-x86_64": {
"signature": "'"$content_of_darwin_signature"'",
"url": "https://github.com/${{ github.repository }}/releases/download/'"$tag"'/'"$app_name"'_${{ steps.get_version.outputs.version }}_-x64.app.tar.gz"
"url": "https://github.com/${{ github.repository }}/releases/download/'"$tag"'/'"$app_name"'_${{ steps.get_version.outputs.version }}_x64.app.tar.gz"
},
"windows-x86_64": {
"signature": "'"$content_of_windows_signature"'",
"url": "https://github.com/${{ github.repository }}/releases/download/'"$tag"'/'"$app_name"'_${{ steps.get_version.outputs.version }}_-x64-setup.exe"
"url": "https://github.com/${{ github.repository }}/releases/download/'"$tag"'/'"$app_name"'_${{ steps.get_version.outputs.version }}_x64-setup.exe"
},
"macos-x86_64": {
"signature": "'"$content_of_windows_signature"'",
"url": "https://github.com/${{ github.repository }}/releases/download/'"$tag"'/'"$app_name"'_${{ steps.get_version.outputs.version }}_-x64.dmg"
"url": "https://github.com/${{ github.repository }}/releases/download/'"$tag"'/'"$app_name"'_${{ steps.get_version.outputs.version }}_x64.dmg"
},
}
}' > update.json
Expand Down

0 comments on commit f0b7881

Please sign in to comment.