Skip to content

Commit

Permalink
Tweak target uploads
Browse files Browse the repository at this point in the history
  • Loading branch information
MGibson1 committed Sep 25, 2024
1 parent 78b3f37 commit d03ba23
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/language-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ jobs:
if-no-files-found: error

- name: Bundle target libs
run: tar -czf target.debug.tar.gz target/debug/lib*.*
run: tar -czf target.libs.tar.gz target/(debug|release)/lib*.*

- name: Upload target
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
with:
name: target.debug.tar.gz
path: ${{ github.workspace }}/target.debug.tar.gz
name: target.libs.tar.gz
path: ${{ github.workspace }}/target.libs.tar.gz
if-no-files-found: error

test:
Expand Down Expand Up @@ -136,10 +136,10 @@ jobs:
- name: Download target artifact
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
with:
name: target.debug.tar.gz
name: target.libs.tar.gz

- name: Untar target
run: tar -xzf target.debug.tar.gz
run: tar -xzf target.libs.tar.gz

- name: Set up run data
run: |
Expand Down

0 comments on commit d03ba23

Please sign in to comment.