Skip to content

Commit

Permalink
Fix release binary path
Browse files Browse the repository at this point in the history
  • Loading branch information
Guilucand committed Oct 24, 2024
1 parent 7a98913 commit b70c3c6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
types: [published]

permissions:
contents: read
contents: write

jobs:
linux-release:
Expand Down Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Pack release
shell: bash
run: |
tar cvf "ggcat-${{ matrix.platform.target }}.tar.gz" -C target/${{ matrix.platform.target }}/ ggcat
tar cvf "ggcat-${{ matrix.platform.target }}.tar.gz" -C target/${{ matrix.platform.target }}/release/ ggcat
- name: Publish release
uses: AButler/[email protected]
with:
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
- name: Pack release
shell: bash
run: |
tar cvf "ggcat-${{ matrix.platform.target }}.tar.gz" -C target/${{ matrix.platform.target }}/ ggcat
tar cvf "ggcat-${{ matrix.platform.target }}.tar.gz" -C target/${{ matrix.platform.target }}/release/ ggcat
- name: Publish release
uses: AButler/[email protected]
with:
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
- name: Pack release
shell: bash
run: |
tar cvf "ggcat-${{ matrix.platform.target }}.tar.gz" -C target/${{ matrix.platform.target }}/ ggcat
tar cvf "ggcat-${{ matrix.platform.target }}.tar.gz" -C target/${{ matrix.platform.target }}/release/ ggcat
- name: Publish release
uses: AButler/[email protected]
with:
Expand Down

0 comments on commit b70c3c6

Please sign in to comment.