Skip to content

Commit

Permalink
upgrade github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
solosky committed Aug 29, 2024
1 parent 4646d37 commit 01830c7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/pixl.js-fw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
container: solosky/nrf52-sdk:latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: 'true'

Expand All @@ -26,32 +26,32 @@ jobs:
- name: build firmware
run: cd fw && make all RELEASE=1 APP_VERSION=$GITHUB_RUN_NUMBER BOARD=${{matrix.board}}
- name: upload bootloader
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pixljs_fw_${{matrix.board}}
path: fw/_build/bootloader.hex
- name: upload firmware
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pixljs_fw_${{matrix.board}}
path: fw/_build/pixljs.hex
- name: upload all
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pixljs_fw_${{matrix.board}}
path: fw/_build/pixljs_all.hex
- name: upload ota
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pixljs_fw_${{matrix.board}}
path: fw/_build/pixjs_ota_v${{github.run_number}}.zip
- name: upload fw update script
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pixljs_fw_${{matrix.board}}
path: fw/scripts/fw_update.bat
- name: upload fw readme file
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pixljs_fw_${{matrix.board}}
path: fw/docs/fw_readme.txt

0 comments on commit 01830c7

Please sign in to comment.