Skip to content

Commit

Permalink
Attempt to fix artifact wrapping
Browse files Browse the repository at this point in the history
  • Loading branch information
reinauer committed Aug 27, 2024
1 parent d263294 commit 31ef933
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,22 @@ jobs:
- name: List PLD files
run: ls -alh source/u*.pld

- name: Create zip
run: |
tar -cvzf A4091_Logic_Artifacts.tar.gz jedec/ source/
- name: Create tar.gz archive
run: tar -cvzf A4091_Logic_Artifacts.tar.gz jedec/ source/

- name: Upload tar.gz artifacts
- name: Upload tar.gz artifact
uses: actions/upload-artifact@v4
with:
name: A4091 Logic Artifacts
path: A4091_Logic_Artifacts.tar.gz

- name: Download the tar.gz artifact
uses: actions/download-artifact@v4
with:
name: A4091 Logic Artifacts
path: .

- name: Verify tar.gz file
run: |
ls -alh A4091_Logic_Artifacts.tar.gz

0 comments on commit 31ef933

Please sign in to comment.