File tree 3 files changed +18
-6
lines changed
3 files changed +18
-6
lines changed Original file line number Diff line number Diff line change 41
41
run : |
42
42
git checkout ${{ matrix.idf_branch }} || echo "Using master branch"
43
43
bash ./tools/cron.sh
44
+ - name : Upload build
45
+ if : failure()
46
+ uses : actions/upload-artifact@v4
47
+ with :
48
+ name : build
49
+ path : build
44
50
- name : Upload archive
45
- uses : actions/upload-artifact@v3
51
+ uses : actions/upload-artifact@v4
46
52
with :
47
53
name : artifacts
48
54
path : dist
Original file line number Diff line number Diff line change 25
25
run : bash ./tools/prepare-ci.sh
26
26
- name : Build Libs for ${{ matrix.target }}
27
27
run : bash ./build.sh -e -t ${{ matrix.target }}
28
+ - name : Upload build
29
+ if : failure()
30
+ uses : actions/upload-artifact@v4
31
+ with :
32
+ name : build
33
+ path : build
28
34
- name : Upload archive
29
- uses : actions/upload-artifact@v3
35
+ uses : actions/upload-artifact@v4
30
36
with :
31
37
name : artifacts
32
38
path : dist
@@ -48,12 +54,12 @@ jobs:
48
54
cd out/tools/esp32-arduino-libs && tar zcf ../../../dist/esp32-arduino-libs.tar.gz * && cd ../../..
49
55
cp out/package_esp32_index.template.json dist/package_esp32_index.template.json
50
56
- name : Upload full esp32-arduino-libs archive
51
- uses : actions/upload-artifact@v3
57
+ uses : actions/upload-artifact@v4
52
58
with :
53
59
name : esp32-arduino-libs
54
60
path : dist/esp32-arduino-libs.tar.gz
55
61
- name : Upload package_esp32_index.template.json
56
- uses : actions/upload-artifact@v3
62
+ uses : actions/upload-artifact@v4
57
63
with :
58
64
name : package-esp32-index-json
59
65
path : dist/package_esp32_index.template.json
Original file line number Diff line number Diff line change @@ -18,12 +18,12 @@ jobs:
18
18
run : bash ./tools/repository_dispatch.sh
19
19
- name : Upload build
20
20
if : failure()
21
- uses : actions/upload-artifact@v3
21
+ uses : actions/upload-artifact@v4
22
22
with :
23
23
name : build
24
24
path : build
25
25
- name : Upload archive
26
- uses : actions/upload-artifact@v3
26
+ uses : actions/upload-artifact@v4
27
27
with :
28
28
name : artifacts
29
29
path : dist
You can’t perform that action at this time.
0 commit comments