-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7049f92
commit 7e1eca5
Showing
2 changed files
with
12 additions
and
9 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 |
---|---|---|
|
@@ -50,7 +50,7 @@ jobs: | |
python3 .github/scripts/create_release.py ${LATEST_TAG} $(pwd) | ||
VERSION_TAG="$(cat CHANGELOG.md | grep -m1 -o 'v[0-9]\+\.[0-9]\+\.[0-9]\+')" | ||
echo "new-version=${VERSION_TAG:1}" >> $GITHUB_OUTPUT | ||
echo "new-version=${VERSION_TAG:1}" >> $GITHUB_OUTPUT | ||
- name: Generate a token | ||
id: generate-token | ||
|
@@ -60,7 +60,7 @@ jobs: | |
private-key: ${{ secrets.WELLCOME_COLLECTION_APP_PRIVATE_KEY }} | ||
|
||
- name: Configure git | ||
# We need to give the GitHub action full repo privileges via a PAT so that it can push the release directly into main | ||
# We need to give the GitHub action full repo privileges so that it can push the release directly into main | ||
run: | | ||
git config --global user.name "GitHub on behalf of Wellcome Collection" | ||
git config --global user.email "[email protected]" | ||
|
@@ -71,11 +71,11 @@ jobs: | |
run: | | ||
git checkout main | ||
git pull | ||
git add CHANGELOG.md build.sbt | ||
git rm RELEASE.md | ||
NEW_TAG="v${{steps.create-release.outputs.new-version}}" | ||
NEW_TAG="v${{ steps.create-release.outputs.new-version }}" | ||
git commit -m "$(printf "Release: Bump version to ${NEW_TAG}\n\n[skip ci]")" | ||
git tag ${NEW_TAG} | ||
|
@@ -131,12 +131,12 @@ jobs: | |
- name: Publish to Sonatype | ||
run: | | ||
ARTIFACT_NAME="${{ matrix.service }}_2.12" | ||
NEW_VERSION="${{needs.create-release.outputs.new-version}}" | ||
NEW_VERSION="${{ needs.create-release.outputs.new-version }}" | ||
SONATYPE_RESPONSE=$(curl "https://central.sonatype.com/solrsearch/select?q=g:org.wellcomecollection%20a:$ARTIFACT_NAME%20v:$NEW_VERSION") | ||
ARTIFACT_COUNT=$(echo SONATYPE_RESPONSE | jq '.response | .numFound') | ||
SONATYPE_RESPONSE=$(curl -s "https://central.sonatype.com/solrsearch/select?q=g:org.wellcomecollection%20a:$ARTIFACT_NAME%20v:$NEW_VERSION") | ||
ARTIFACT_COUNT=$(echo $SONATYPE_RESPONSE | jq '.response | .numFound') | ||
if [[ "ARTIFACT_COUNT" -eq 0 ]]; then | ||
if [[ $ARTIFACT_COUNT -eq 0 ]]; then | ||
echo "Publishing package $ARTIFACT_NAME, version $NEW_VERSION to Sonatype." | ||
PGP_PASSPHRASE=${{ secrets.GPG_PASSPHRASE }} sbt "project ${{ matrix.service }}" publishSigned | ||
sbt "project ${{ matrix.service }}" sonatypeBundleRelease | ||
|
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,3 @@ | ||
RELEASE_TYPE: minor | ||
|
||
Just testing. |