We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bbcf7bf + cded313 commit 25f1849Copy full SHA for 25f1849
.github/workflows/release.yml
@@ -118,8 +118,14 @@ jobs:
118
- name: Upload native images and JAR to the release
119
run: |
120
gh release upload ${{ steps.extract_tag.outputs.tag }} \
121
- artifacts/chat-gpt-cli-jar/chat-gpt-cli-*.jar \
122
artifacts/chat-gpt-cli-macos-intel/chat-gpt-cli \
123
- artifacts/chat-gpt-cli-linux64/chat-gpt-cli
+ --name "chat-gpt-cli-macos-intel" \
+ artifacts/chat-gpt-cli-linux64/chat-gpt-cli \
124
+ --name "chat-gpt-cli-linux64"
125
+
126
+ for jar_file in artifacts/chat-gpt-cli-jar/chat-gpt-cli-*.jar; do
127
+ echo "Uploading ${jar_file}"
128
+ gh release upload ${{ steps.extract_tag.outputs.tag }} "${jar_file}"
129
+ done
130
env:
131
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
0 commit comments