Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ jobs:
west build -p -b ${{ matrix.board }} app -- -DZMK_CONFIG="$(pwd)/config"

- name: Upload firmware artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v5
with:
name: firmware-${{ matrix.board }}
path: build/zephyr/zmk.uf2

- name: Upload build logs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v5
if: failure()
with:
name: build-logs-${{ matrix.board }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
echo "4. Flash center first, then peripheral" >> README.md

- name: Upload release assets
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v5
with:
name: release-assets
path: release-assets/
6 changes: 3 additions & 3 deletions .github/workflows/zmk-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ jobs:
echo "- **Description**: ${{ matrix.description }}" >> build-info.md

- name: Upload firmware
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v5
with:
name: firmware-${{ matrix.board }}-${{ github.sha }}
path: |
Expand All @@ -134,7 +134,7 @@ jobs:
retention-days: 30

- name: Upload build logs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v5
if: failure()
with:
name: build-logs-${{ matrix.board }}-${{ github.sha }}
Expand All @@ -158,7 +158,7 @@ jobs:
find . -name "build-info.md" -exec cat {} \; > release-assets/build-summary.md

- name: Upload release assets
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v5
with:
name: release-assets
path: release-assets/
Loading