Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update upload-artifact #207

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions .github/workflows/code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ jobs:

# Artifacts
- name: Upload boot
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: zpkgs
name: boot-${{ matrix.app }}
path: ./build/boot*.zip

# Make zpkg for FPGA apps
Expand Down Expand Up @@ -132,9 +132,9 @@ jobs:

# Artifacts
- name: Upload zpkg
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: zpkgs
name: zpkg-${{ matrix.app }}
path: ./build/panda-fpga@*.zpg

# Seting up AWS runners for high memory apps
Expand Down Expand Up @@ -248,9 +248,9 @@ jobs:

# Artifacts
- name: Upload zpkg
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: zpkgs
name: zpkg-${{ matrix.app }}
path: ./build/panda-fpga@*.zpg

# Stop the AWS runner
Expand Down Expand Up @@ -327,9 +327,8 @@ jobs:
# make a release on every tag
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: zpkgs
path: zpkgs

- name: Github Release
Expand Down
Loading