File tree Expand file tree Collapse file tree 2 files changed +11
-8
lines changed Expand file tree Collapse file tree 2 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -41,11 +41,12 @@ jobs:
41
41
rm testdata/test1*
42
42
43
43
- name : upload the macos build
44
- uses : actions/upload-artifact@v3
44
+ uses : actions/upload-artifact@v4
45
45
with :
46
46
name : signed-wda
47
47
path : testdata/wda-signed.ipa
48
48
retention-days : 1
49
+ overwrite : true
49
50
50
51
test_on_windows :
51
52
runs-on : windows-latest
64
65
- name : compile
65
66
run : go build
66
67
- name : Download mac signed wda from previous job
67
- uses : actions/download-artifact@v3
68
+ uses : actions/download-artifact@v4
68
69
with :
69
70
name : signed-wda
70
71
@@ -104,7 +105,7 @@ jobs:
104
105
cache : true
105
106
106
107
- name : Download mac release from previous job
107
- uses : actions/download-artifact@v3
108
+ uses : actions/download-artifact@v4
108
109
with :
109
110
name : signed-wda
110
111
Original file line number Diff line number Diff line change @@ -33,11 +33,12 @@ jobs:
33
33
Compress-Archive -Path .\bin\ios.exe, release_tag -CompressionLevel Optimal -DestinationPath go-ios-windows.zip
34
34
35
35
- name : upload the windows build
36
- uses : actions/upload-artifact@v3
36
+ uses : actions/upload-artifact@v4
37
37
with :
38
38
name : windows-build
39
39
path : go-ios-windows.zip
40
40
retention-days : 1
41
+ overwrite : true
41
42
42
43
build_on_mac :
43
44
runs-on : macos-latest
52
53
cache : true
53
54
54
55
- name : Download win release from previous job
55
- uses : actions/download-artifact@v3
56
+ uses : actions/download-artifact@v4
56
57
with :
57
58
name : windows-build
58
59
path : ./win-bin
@@ -75,11 +76,12 @@ jobs:
75
76
zip -j go-ios-mac.zip bin/ios
76
77
77
78
- name : upload the macos build
78
- uses : actions/upload-artifact@v3
79
+ uses : actions/upload-artifact@v4
79
80
with :
80
81
name : macos-build
81
82
path : go-ios-mac.zip
82
83
retention-days : 1
84
+ overwrite : true
83
85
84
86
build_on_linux_and_release :
85
87
runs-on : ubuntu-latest
94
96
cache : true
95
97
96
98
- name : Download mac release from previous job
97
- uses : actions/download-artifact@v3
99
+ uses : actions/download-artifact@v4
98
100
with :
99
101
name : macos-build
100
102
path : ./mac-bin
@@ -107,7 +109,7 @@ jobs:
107
109
zip -j go-ios-mac.zip ios
108
110
109
111
- name : Download windows release from previous job
110
- uses : actions/download-artifact@v3
112
+ uses : actions/download-artifact@v4
111
113
with :
112
114
name : windows-build
113
115
path : ./win-bin
You can’t perform that action at this time.
0 commit comments