Fix build gradle #2
Workflow file for this run
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
name: Test & Release | |
on: | |
push: | |
branches: | |
- main | |
# For testing | |
- "dhoepelman/auto_publish_ci" | |
tags: | |
- 'v*' | |
permissions: | |
contents: read | |
issues: write | |
jobs: | |
test: | |
uses: ./.github/workflows/test.yml | |
release: | |
name: release | |
# First run the normal tests | |
needs: [test] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 8 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
gradle-version: 8.7 | |
- name: Get Version | |
id: get-version | |
shell: bash | |
run: | | |
if [[ $GITHUB_REF =~ refs/tags/v(.+) ]]; then | |
echo "Version is determined by git tag." | |
VERSION=${BASH_REMATCH[1]} | |
IS_SNAPSHOT="false" | |
else | |
echo "Version is determined by Gradle properties." | |
VERSION=$(./gradlew properties --console=plain -q | grep "^version:" | awk '{print $2}') | |
if [[ $VERSION != *"SNAPSHOT"* ]]; then | |
echo "Error: Non-tagged versions must be SNAPSHOT versions." | |
echo "::error file=build.gradle.kts,line=4::Must be SNAPSHOT version" | |
exit 1 | |
fi | |
IS_SNAPSHOT="true" | |
fi | |
echo "Version: $VERSION" | |
echo "version=$VERSION" >> $GITHUB_OUTPUT | |
echo "Is snapshot: $IS_SNAPSHOT" | |
echo "is_snapshot=$IS_SNAPSHOT" >> $GITHUB_OUTPUT | |
- name: Publish version '${{ steps.get-version.outputs.version }}' to sonatype & close staging repo | |
env: | |
CI_VERSION: ${{ steps.get-version.outputs.version }} | |
run: | | |
echo "Publishing version '$CI_VERSION' to sonatype." | |
./gradlew publishToSonatype closeSonatypeStagingRepository | |
- uses: trstringer/manual-approval@v1 | |
name: "Wait for approval to publish version '${{ steps.get-version.outputs.version }}'" | |
if: ${{ steps.get-version.outputs.is_snapshot == 'false' }} | |
with: | |
secret: ${{ github.TOKEN }} | |
approvers: dhoepelman,nlochschmidt | |
minimum-approvals: 1 | |
issue-title: "Release version '${{ steps.get-version.outputs.version }}'" | |
issue-body: "Please approve or deny the release of version '${{ steps.get-version.outputs.version }}'." | |
# Default included: "approve", "approved", "lgtm", "yes" | |
additional-approved-words: '' | |
# Default included: "deny", "denied", "no" | |
additional-denied-words: '' | |
- name: "Release version '${{ steps.get-version.outputs.version }}'" | |
env: | |
CI_VERSION: ${{ steps.get-version.outputs.version }} | |
run: | | |
echo "Here is where I would release '$CI_VERSION'." | |
#./gradlew findSonatypeStagingRepository releaseSonatypeStagingRepository |