File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -25,21 +25,25 @@ jobs:
25
25
26
26
# Add build artifacts to the new GitHub release
27
27
release-artifacts :
28
- needs : [build-in-zyphyr-ci -container, create-release]
28
+ needs : [build-in-docker -container, create-release]
29
29
if : ${{ needs.create-release.outputs.release_created }}
30
30
runs-on : ubuntu-latest
31
31
timeout-minutes : 60
32
32
33
33
strategy :
34
34
matrix :
35
- board : [nrf9160dk_nrf9160_ns, nrf9161dk_nrf9161_ns, nrf9151dk_nrf9151_ns ]
35
+ board : [nrf9160dk/nrf9160/ns, nrf9161dk/nrf9161/ns, nrf9151dk/nrf9151/ns ]
36
36
37
37
steps :
38
+ - name : Archive name generator
39
+ id : artifact_name
40
+ run : echo "artifact_name=$(echo ${{ matrix.board }} | tr "/" "_")" >> $GITHUB_OUTPUT
41
+
38
42
- name : Download Build Artifacts
39
43
uses : actions/download-artifact@v4
40
44
with :
41
- name : softsim_external_profile_ ${{ matrix.board }}
45
+ name : ${{ steps.artifact_name.outputs.artifact_name }}
42
46
- name : Upload Release Artifact
43
47
env :
44
48
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
45
- run : gh release upload ${{ needs.create-release.outputs.tag }} softsim_external_profile_ ${{ matrix.board }}.zip
49
+ run : gh release upload ${{ needs.create-release.outputs.tag }} ${{ steps.artifact_name.outputs.artifact_name }}.zip
You can’t perform that action at this time.
0 commit comments