Skip to content

Commit

Permalink
ci(github): add cd to tarbell step
Browse files Browse the repository at this point in the history
  • Loading branch information
tofuuudon committed Oct 21, 2024
1 parent a1ba486 commit 0548bab
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ jobs:
run: cargo build --release --target ${{ matrix.platform.target }}

- name: Create tarbell
run: tar -czf target/${{ matrix.platform.target }}/release/tsc-cli-0.1.0-${{ matrix.platform.target }}.tar.gz tsc-cli
run: |
cd target/${{ matrix.platform.target }}/release
tar -czf tsc-cli-0.1.0-${{ matrix.platform.target }}.tar.gz tsc-cli
# - name: Upload release artifacts
# env:
Expand Down

0 comments on commit 0548bab

Please sign in to comment.