-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate release process to GitHub Actions
Complete migration to GitHub Actions. See gh-411
- Loading branch information
Showing
2 changed files
with
59 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"files": [ | ||
{ | ||
"aql": { | ||
"items.find": { | ||
"$and": [ | ||
{ | ||
"@build.name": "${buildName}", | ||
"@build.number": "${buildNumber}" | ||
} | ||
] | ||
} | ||
}, | ||
"target": "nexus/" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,5 +33,45 @@ jobs: | |
name: Promote | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Promote | ||
run: echo "Promote happens here" | ||
- name: Check Out | ||
uses: actions/checkout@v4 | ||
- name: Set Up JFrog CLI | ||
uses: jfrog/setup-jfrog-cli@7c95feb32008765e1b4e626b078dfd897c4340ad # v4.1.2 | ||
env: | ||
JF_ENV_SPRING: ${{ secrets.JF_ARTIFACTORY_SPRING }} | ||
- name: Download Release Artifacts | ||
shell: bash | ||
run: jf rt download --spec ./.github/artifacts.spec --spec-vars 'buildName=${{ format('spring-javaformat-{0}', inputs.version) }};buildNumber=${{ inputs.build-number }}' | ||
- name: Check Maven Central Sync Status | ||
id: check-sync-status | ||
run: | | ||
url=${{ format('https://repo.maven.apache.org/maven2/io/spring/javaformat/spring-javaformat/{0}/spring-javaformat-{0}.pom', inputs.version) }} | ||
status_code=$( curl --write-out '%{http_code}' --head --silent --output /dev/null ${url} ) | ||
if [ "${status_code}" != 200 ] && [ "${status_code}" != 404 ]; then | ||
echo "Unexpected status code ${status_code}" | ||
exit 1 | ||
fi | ||
echo "status-code=${status_code}" >> $GITHUB_OUTPUT | ||
- name: Sync to Maven Central | ||
if: ${{ steps.check-sync-status.outputs.status-code == '404' }} | ||
uses: spring-io/[email protected] | ||
with: | ||
username: ${{ secrets.OSSRH_S01_TOKEN_USERNAME }} | ||
password: ${{ secrets.OSSRH_S01_TOKEN_PASSWORD }} | ||
staging-profile-name: ${{ secrets.OSSRH_S01_STAGING_PROFILE }} | ||
create: true | ||
upload: true | ||
close: true | ||
release: true | ||
generate-checksums: true | ||
- name: Await Maven Central Sync | ||
if: ${{ steps.check-sync-status.outputs.status-code == '404' }} | ||
run: | | ||
url=${{ format('https://repo.maven.apache.org/maven2/io/spring/javaformat/spring-javaformat/{0}/spring-javaformat-{0}.pom', inputs.version) }} | ||
echo "Waiting for $url" | ||
until curl --fail --head --silent $url > /dev/null | ||
do | ||
echo "." | ||
sleep 60 | ||
done | ||
echo "$url is available" |