Skip to content

Commit

Permalink
Fix compression tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
pfoerster committed Jul 3, 2022
1 parent 68cde8a commit ed4aeb5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ jobs:
run: ${{ format('Compress-Archive target/{0}/release/texlab.exe {1}', matrix.target, matrix.archive) }}
- name: Compress (macOS)
if: ${{ contains(matrix.os, 'macos') }}
run: ${{ format('brew install gnu-tar; gtar -czvf {0} -C target/{1}/release texlab', matrix.target, matrix.archive) }}
run: ${{ format('brew install gnu-tar; gtar -czvf {1} -C target/{0}/release texlab', matrix.target, matrix.archive) }}
- name: Compress (Linux)
if: ${{ contains(matrix.os, 'macos') }}
run: ${{ format('tar -czvf {0} -C target/{1}/release texlab', matrix.target, matrix.archive) }}
if: ${{ contains(matrix.os, 'ubuntu') }}
run: ${{ format('tar -czvf {1} -C target/{0}/release texlab', matrix.target, matrix.archive) }}
- name: Upload binary archive
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit ed4aeb5

Please sign in to comment.