Skip to content

Commit 25f1849

Browse files
authored
Merge pull request #2 from shahabkondri/1.0.2
Merge 1.0.2
2 parents bbcf7bf + cded313 commit 25f1849

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,14 @@ jobs:
118118
- name: Upload native images and JAR to the release
119119
run: |
120120
gh release upload ${{ steps.extract_tag.outputs.tag }} \
121-
artifacts/chat-gpt-cli-jar/chat-gpt-cli-*.jar \
122121
artifacts/chat-gpt-cli-macos-intel/chat-gpt-cli \
123-
artifacts/chat-gpt-cli-linux64/chat-gpt-cli
122+
--name "chat-gpt-cli-macos-intel" \
123+
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
124130
env:
125131
GITHUB_TOKEN: ${{ secrets.GH_PAT }}

0 commit comments

Comments
 (0)