Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xlc committed Sep 30, 2024
1 parent 047d95a commit 0e6f864
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
- name: Compress build output
run: |
ls -lhR build
tar czf ${{ matrix.os }}-build.tar.gz build/
tar czf build.tar.gz build/
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}-build
path: ${{ matrix.os }}-build.tar.gz
path: build.tar.gz
retention-days: 1
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Compress build output
run: |
ls -lhR build
tar czf ${{ matrix.os }}-build.tar.gz build/
tar czf build.tar.gz build/
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 0e6f864

Please sign in to comment.