Skip to content

Commit

Permalink
Do not compress the archive.
Browse files Browse the repository at this point in the history
  • Loading branch information
chriseth committed Jan 24, 2024
1 parent 0178af1 commit 0a2955b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pr-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ jobs:
- name: Build
run: cargo build --all-targets --all --all-features --profile pr-tests
- name: Create artifact archive
run: tar czf target.tar.gz target
run: tar cf target.tar target
- name: Upload build artifacts
uses: actions/upload-artifact@v2
with:
name: build-artifacts
path: target.tar.gz
path: target.tar
- name: ⚡ Save rust cache
if: github.ref == 'refs/heads/main'
uses: actions/cache/save@v3
Expand All @@ -78,7 +78,7 @@ jobs:
with:
name: build-artifacts
- name: Extract artifact archive
run: tar xzf target.tar.gz
run: tar xf target.tar
- name: ⚡ Cache nodejs
uses: actions/cache@v3
with:
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
with:
name: build-artifacts
- name: Extract artifact archive
run: tar xzf target.tar.gz
run: tar xf target.tar.gz
- name: ⚡ Cache nodejs
uses: actions/cache@v3
with:
Expand Down

0 comments on commit 0a2955b

Please sign in to comment.