v1.26.0 #54
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: Release | |
on: | |
workflow_dispatch: | |
release: | |
types: [created] | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
environment: deployment | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: cache gradle dependencies | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-core-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-gradle-core- | |
- name: Publish release to sonatype | |
run: ./gradlew publishToSonatype -Prelease closeAndReleaseSonatypeStagingRepository | |
env: | |
SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }} | |
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }} | |
ORG_GRADLE_PROJECT_sonatypeUsername: ${{ secrets.NEXUS_USERNAME }} | |
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }} | |
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }} | |
SONATYPE_STAGING_PROFILE_ID: ${{ secrets.SONATYPE_STAGING_PROFILE_ID }} | |
ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.NEXUS_PASSWORD }} | |
SIGNING_PRIVATE_KEY_BASE64: ${{ secrets.SIGNING_PRIVATE_KEY_BASE64 }} | |
# - name: Create pull request into develop | |
# uses: repo-sync/pull-request@v2 | |
# with: | |
# source_branch: 'main' | |
# destination_branch: 'develop' | |
# github_token: ${{ secrets.PAT }} | |
# pr_title: "chore(release): pulling main into develop post release v${{ steps.extract-version.outputs.release_version }}" | |
# pr_body: ':crown: *An automated PR*' | |
# pr_reviewer: 'itsdebs' | |
# | |
# - name: Delete hotfix release branch | |
# uses: koj-co/delete-merged-action@master | |
# if: startsWith(github.event.pull_request.head.ref, 'hotfix-release/') | |
# with: | |
# branches: 'hotfix-release/*' | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# | |
# - name: Delete release branch | |
# uses: koj-co/delete-merged-action@master | |
# if: startsWith(github.event.pull_request.head.ref, 'release/') | |
# with: | |
# branches: 'release/*' | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# - name: create release | |
# run: | | |
# curl \ | |
# -X POST \ | |
# -H "Authorization: token $RELEASE_TOKEN" \ | |
# https://api.github.com/repos/${{github.repository}}/releases \ | |
# -d '{"tag_name": "${{ env.RELEASE_VERSION }}", "name": "${{ env.RELEASE_VERSION }}", "body": "Release of version ${{ env.RELEASE_VERSION }}", "draft": false, "prerelease": false, "generate_release_notes": true}' | |
# env: | |
# RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }} | |
# RELEASE_VERSION: ${{ steps.vars.outputs.tag }} |