File tree 2 files changed +28
-2
lines changed
2 files changed +28
-2
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "files" : [
3
+ {
4
+ "aql" : {
5
+ "items.find" : {
6
+ "$and" : [
7
+ {
8
+ "@build.name" : "${buildName}" ,
9
+ "@build.number" : "${buildNumber}" ,
10
+ }
11
+ ]
12
+ }
13
+ },
14
+ "target" : "nexus/"
15
+ }
16
+ ]
17
+ }
Original file line number Diff line number Diff line change 33
33
name : Promote
34
34
runs-on : ubuntu-latest
35
35
steps :
36
- - name : Promote
37
- run : echo "Promote happens here"
36
+ - name : Set Up JFrog CLI
37
+ uses : jfrog/setup-jfrog-cli@727b480bafd0d8adbdfdb2257a7d7c2e08eb1779 # v4.0.2
38
+ env :
39
+ JF_ENV_SPRING : ${{ secrets.JF_ARTIFACTORY_SPRING }}
40
+ - name : Download Release Artifacts
41
+ shell : bash
42
+ run : jf rt download --spec .github/artifacts.spec --spec-vars 'buildName=${{ format('spring-javaformat-{0}', inputs.version) }};buildNumber=${{ inputs.build-number }}'
43
+ - name : Check Sync Status
44
+ run : |
45
+ url=${{ format('https://repo.maven.apache.org/maven2/io/spring/javaformat/spring-javaformat/{0}/spring-javaformat-{}.pom', inputs.version) }}
46
+ curl --fail --head --silent $url > /dev/null
You can’t perform that action at this time.
0 commit comments