File tree Expand file tree Collapse file tree 1 file changed +19
-2
lines changed Expand file tree Collapse file tree 1 file changed +19
-2
lines changed Original file line number Diff line number Diff line change 27
27
runs-on : ubuntu-latest
28
28
container :
29
29
image : ghcr.io/darthcloud/idf-blueretro:v5.3.0_2024-02-18
30
+ outputs :
31
+ br_version : ${{ env.br_version }}
30
32
31
33
steps :
32
34
- name : Checkout repo
@@ -49,12 +51,27 @@ jobs:
49
51
mkdir ota
50
52
mv ota_data_initial.bin ota/
51
53
- name : Upload artifact
52
- uses : darthcloud /upload-artifact@v4
54
+ uses : actions /upload-artifact@v4
53
55
with :
54
- name : ${{ env.br_version }}_${{ matrix.hw_version }}
56
+ name : ${{ matrix.hw_version }}_${{ matrix.br_config }}
55
57
path : |
56
58
build/partition_table/partition-table.bin
57
59
build/bootloader/bootloader.bin
58
60
build/ota/ota_data_initial.bin
59
61
build/BlueRetro*.bin
60
62
if-no-files-found : error
63
+
64
+ package :
65
+ needs : build
66
+ runs-on : ubuntu-latest
67
+
68
+ steps :
69
+ - name : Download artifact
70
+ - uses : actions/download-artifact@v4
71
+ with :
72
+ path : build
73
+ merge-multiple : true
74
+ - name : Display structure of downloaded files
75
+ run : |
76
+ ls -R build
77
+ echo ${{ needs.build.outputs.br_version }}
You can’t perform that action at this time.
0 commit comments