Skip to content

Commit

Permalink
chore: rename release archive file
Browse files Browse the repository at this point in the history
  • Loading branch information
fuyufjh committed Nov 1, 2023
1 parent 4518822 commit 12fab57
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,14 @@ jobs:
matrix:
include:
- target: x86_64-pc-windows-gnu
archive: zip
archive_type: zip
archive_name: heygpt_win64
- target: x86_64-unknown-linux-musl
archive: tar.gz
archive_type: tar.gz
archive_name: heygpt_linux
- target: x86_64-apple-darwin
archive: zip
archive_type: zip
archive_name: heygpt_macos
steps:
- uses: actions/checkout@master
- name: Compile and release
Expand All @@ -24,4 +27,5 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
RUSTTARGET: ${{ matrix.target }}
ARCHIVE_TYPES: ${{ matrix.archive }}
ARCHIVE_TYPES: ${{ matrix.archive_type }}
ARCHIVE_NAME: ${{ matrix.archive_name }}

0 comments on commit 12fab57

Please sign in to comment.