27
27
./gradlew clean build shadowJar
28
28
29
29
- name : ' Publish JAR'
30
- uses : actions/upload-artifact@v2-preview
30
+ uses : actions/upload-artifact@v2
31
31
with :
32
32
name : ' graphql-anonymizer-${{env.RELEASE_VERSION}}-all.jar'
33
33
path : build/libs/*-all.jar
62
62
echo "${{steps.create_release.outputs.upload_url}}" > upload_url.txt
63
63
64
64
- name : ' Publish Upload URL'
65
- uses : actions/upload-artifact@v2-preview
65
+ uses : actions/upload-artifact@v2
66
66
with :
67
67
name : ' upload_url.txt'
68
68
path : ' upload_url.txt'
@@ -102,12 +102,12 @@ jobs:
102
102
gu install native-image
103
103
104
104
- name : ' Get JAR Artifact'
105
- uses : actions/download-artifact@v2-preview
105
+ uses : actions/download-artifact@v2
106
106
with :
107
107
name : ' graphql-anonymizer-${{env.RELEASE_VERSION}}-all.jar'
108
108
109
109
- name : ' Get Release URL'
110
- uses : actions/download-artifact@v2-preview
110
+ uses : actions/download-artifact@v2
111
111
with :
112
112
name : ' upload_url.txt'
113
113
@@ -121,7 +121,7 @@ jobs:
121
121
122
122
- name : ' Publish Native Image'
123
123
if : success()
124
- uses : actions/upload-artifact@v2-preview
124
+ uses : actions/upload-artifact@v2
125
125
with :
126
126
name : ' graphql-anonymizer-${{env.RELEASE_VERSION}}-${{matrix.label}}'
127
127
path : ' graphql-anonymizer-${{env.RELEASE_VERSION}}-all'
@@ -168,7 +168,7 @@ jobs:
168
168
choco install visualstudio2017-workload-vctools
169
169
170
170
- name : ' Get JAR Artifact'
171
- uses : actions/download-artifact@v2-preview
171
+ uses : actions/download-artifact@v2
172
172
with :
173
173
name : ' graphql-anonymizer-${{env.RELEASE_VERSION}}-all.jar'
174
174
@@ -181,7 +181,7 @@ jobs:
181
181
./graalvm-ce-java11-21.0.0.2/bin/native-image -H:+ReportExceptionStackTraces -H:+ReportUnsupportedElementsAtRuntime --verbose --no-server --no-fallback -H:Name=graphql-anonymizer-${{env.RELEASE_VERSION}}-all --allow-incomplete-classpath -jar graphql-anonymizer-${{env.RELEASE_VERSION}}-all.jar
182
182
183
183
- name : ' Get Release URL'
184
- uses : actions/download-artifact@v2-preview
184
+ uses : actions/download-artifact@v2
185
185
with :
186
186
name : ' upload_url.txt'
187
187
@@ -192,7 +192,7 @@ jobs:
192
192
193
193
- name : ' Publish Windows Image'
194
194
if : success()
195
- uses : actions/upload-artifact@v2-preview
195
+ uses : actions/upload-artifact@v2
196
196
with :
197
197
name : ' graphql-anonymizer-${{env.RELEASE_VERSION}}-windows.exe'
198
198
path : ' graphql-anonymizer-${{env.RELEASE_VERSION}}-all.exe'
0 commit comments