[CI] Zip files before uploading; instatll openssl and ca-ertificates
Some checks failed
Build / Build (push) Failing after 7m18s
Some checks failed
Build / Build (push) Failing after 7m18s
This commit is contained in:
parent
fc3b06d87f
commit
8062f0ac6c
@ -15,7 +15,11 @@ jobs:
|
|||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
run: |
|
run: |
|
||||||
apt-get update;
|
apt-get update;
|
||||||
apt-get install --yes --no-install-recommends nodejs ssh zip
|
apt-get install --yes --no-install-recommends \
|
||||||
|
nodejs \
|
||||||
|
zip \
|
||||||
|
openssl \
|
||||||
|
ca-certificates
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
@ -46,11 +50,12 @@ jobs:
|
|||||||
|
|
||||||
- name: Rename zmk.uf2
|
- name: Rename zmk.uf2
|
||||||
run: cp build/zephyr/zmk.uf2 corne_right_nice_nano_v2.uf2
|
run: cp build/zephyr/zmk.uf2 corne_right_nice_nano_v2.uf2
|
||||||
|
|
||||||
|
- name: Zip Artifacts
|
||||||
|
run: zip firmware.zip corne_left_nice_nano_v2.uf2 corne_right_nice_nano_v2.uf2
|
||||||
|
|
||||||
- name: Upload Artifacts
|
- name: Upload Artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: firmware.zip
|
path: firmware.zip
|
||||||
if-no-files-found: ignore
|
if-no-files-found: ignore
|
||||||
path: |
|
|
||||||
*.uf2
|
|
||||||
|
Loading…
Reference in New Issue
Block a user