8
8
9
9
steps :
10
10
- name : Checkout
11
- uses : actions/checkout@v2
11
+ uses : actions/checkout@v4
12
12
- name : Configure paths
13
13
run : |
14
14
New-Item -ItemType Directory -Force -Path ./artifacts/release/x64
@@ -38,18 +38,20 @@ jobs:
38
38
with :
39
39
name : doorstop_win_release
40
40
path : artifacts/release
41
+ include-hidden-files : true
41
42
- name : Upload Verbose
42
43
uses : actions/upload-artifact@v4
43
44
with :
44
45
name : doorstop_win_verbose
45
46
path : artifacts/verbose
47
+ include-hidden-files : true
46
48
47
49
build-linux :
48
50
runs-on : ubuntu-latest
49
51
50
52
steps :
51
53
- name : Checkout
52
- uses : actions/checkout@v2
54
+ uses : actions/checkout@v4
53
55
- name : Configure paths
54
56
run : |
55
57
mkdir -p artifacts/{verbose,release,debug}/{x86,x64}
@@ -87,23 +89,26 @@ jobs:
87
89
with :
88
90
name : doorstop_linux_release
89
91
path : artifacts/release
92
+ include-hidden-files : true
90
93
- name : Upload Verbose
91
94
uses : actions/upload-artifact@v4
92
95
with :
93
96
name : doorstop_linux_verbose
94
97
path : artifacts/verbose
98
+ include-hidden-files : true
95
99
- name : Upload Debug
96
100
uses : actions/upload-artifact@v4
97
101
with :
98
102
name : doorstop_linux_debug
99
103
path : artifacts/debug
104
+ include-hidden-files : true
100
105
101
106
build-macos :
102
107
runs-on : macos-latest
103
108
104
109
steps :
105
110
- name : Checkout
106
- uses : actions/checkout@v2
111
+ uses : actions/checkout@v4
107
112
- name : Configure paths
108
113
run : |
109
114
mkdir -p artifacts/{verbose,release,debug}/x64
@@ -130,16 +135,19 @@ jobs:
130
135
with :
131
136
name : doorstop_macos_release
132
137
path : artifacts/release
138
+ include-hidden-files : true
133
139
- name : Upload Verbose
134
140
uses : actions/upload-artifact@v4
135
141
with :
136
142
name : doorstop_macos_verbose
137
143
path : artifacts/verbose
144
+ include-hidden-files : true
138
145
- name : Upload Debug
139
146
uses : actions/upload-artifact@v4
140
147
with :
141
148
name : doorstop_macos_debug
142
149
path : artifacts/debug
150
+ include-hidden-files : true
143
151
144
152
collect :
145
153
runs-on : ubuntu-latest
@@ -151,7 +159,7 @@ jobs:
151
159
152
160
steps :
153
161
- name : Download artifacts
154
- uses : actions/download-artifact@v3.0.0
162
+ uses : actions/download-artifact@v4
155
163
with :
156
164
path : artifacts
157
165
- name : Grab version
0 commit comments