Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
ClemensElflein committed Oct 30, 2024
1 parent bc0e92b commit c3910bf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ jobs:
mkdir artifacts
cp -r ./host-software ./artifacts
mkdir ./artifacts/bootloader
cp ./out/* ./artifacts/bootloader
cp ./out/xcore-boot.bin ./artifacts/bootloader
cp ./out/xcore-boot.elf ./artifacts/bootloader
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
Expand All @@ -53,6 +54,11 @@ jobs:
if: github.ref_type == 'tag' && startsWith(github.ref_name, 'v')
needs: artifacts
steps:
- name: Download artifacts from build stage
uses: actions/download-artifact@v4
with:
name: bootloader
path: artifacts
- name: Compress release directory into a versioned ZIP file
run: zip -r "xcore-boot-${{ github.ref_name }}.zip" artifacts/*
- uses: "marvinpinto/action-automatic-releases@latest"
Expand Down
2 changes: 1 addition & 1 deletion bootloader/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c3910bf

Please sign in to comment.