|
@@ -62,7 +62,7 @@ jobs:
|
|
|
echo "targets=$(jq -c 'keys' targets.json)" >> $GITHUB_OUTPUT
|
|
echo "targets=$(jq -c 'keys' targets.json)" >> $GITHUB_OUTPUT
|
|
|
|
|
|
|
|
- name: Upload targets json
|
|
- name: Upload targets json
|
|
|
- uses: actions/upload-artifact@v4
|
|
|
|
|
|
|
+ uses: actions/upload-artifact@v5
|
|
|
with:
|
|
with:
|
|
|
name: targets-${{ inputs.keymap }}
|
|
name: targets-${{ inputs.keymap }}
|
|
|
path: targets.json
|
|
path: targets.json
|
|
@@ -92,7 +92,7 @@ jobs:
|
|
|
uses: actions/checkout@v5
|
|
uses: actions/checkout@v5
|
|
|
|
|
|
|
|
- name: Get target definitions
|
|
- name: Get target definitions
|
|
|
- uses: actions/download-artifact@v5
|
|
|
|
|
|
|
+ uses: actions/download-artifact@v6
|
|
|
with:
|
|
with:
|
|
|
name: targets-${{ inputs.keymap }}
|
|
name: targets-${{ inputs.keymap }}
|
|
|
path: .
|
|
path: .
|
|
@@ -112,7 +112,7 @@ jobs:
|
|
|
qmk mass-compile -t -j $NCPUS -e DUMP_CI_METADATA=yes $(jq -r '.["${{ matrix.target }}"].targets' targets.json) || touch .failed
|
|
qmk mass-compile -t -j $NCPUS -e DUMP_CI_METADATA=yes $(jq -r '.["${{ matrix.target }}"].targets' targets.json) || touch .failed
|
|
|
|
|
|
|
|
- name: Upload binaries
|
|
- name: Upload binaries
|
|
|
- uses: actions/upload-artifact@v4
|
|
|
|
|
|
|
+ uses: actions/upload-artifact@v5
|
|
|
with:
|
|
with:
|
|
|
name: firmware-${{ inputs.keymap }}-${{ matrix.target }}
|
|
name: firmware-${{ inputs.keymap }}-${{ matrix.target }}
|
|
|
if-no-files-found: ignore
|
|
if-no-files-found: ignore
|
|
@@ -139,14 +139,14 @@ jobs:
|
|
|
uses: actions/checkout@v5
|
|
uses: actions/checkout@v5
|
|
|
|
|
|
|
|
- name: Download firmwares
|
|
- name: Download firmwares
|
|
|
- uses: actions/download-artifact@v5
|
|
|
|
|
|
|
+ uses: actions/download-artifact@v6
|
|
|
with:
|
|
with:
|
|
|
pattern: firmware-${{ inputs.keymap }}-*
|
|
pattern: firmware-${{ inputs.keymap }}-*
|
|
|
path: .
|
|
path: .
|
|
|
merge-multiple: true
|
|
merge-multiple: true
|
|
|
|
|
|
|
|
- name: Upload all firmwares
|
|
- name: Upload all firmwares
|
|
|
- uses: actions/upload-artifact@v4
|
|
|
|
|
|
|
+ uses: actions/upload-artifact@v5
|
|
|
with:
|
|
with:
|
|
|
name: firmware-${{ inputs.keymap }}
|
|
name: firmware-${{ inputs.keymap }}
|
|
|
if-no-files-found: ignore
|
|
if-no-files-found: ignore
|