Manual Release #28
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: Manual Release | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: 'Release version' | |
required: true | |
env: | |
GH_USER_NAME: github.actor | |
RELEASE_VERSION: ${{ github.event.inputs.version }} | |
REPOSITORY_URL: 'https://maven.pkg.github.com/' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'adopt' | |
java-version: '21' | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Setup git credentials | |
uses: oleksiyrudenko/gha-git-credentials@v2 | |
with: | |
name: 'reportportal.io' | |
email: 'support@reportportal.io' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Release with Gradle | |
id: release | |
run: | | |
./gradlew release -PreleaseMode \ | |
-PgithubUserName=${{env.GH_USER_NAME}} -PgithubToken=${{secrets.GITHUB_TOKEN}} \ | |
-PgpgPassphrase=${{secrets.GPG_PASSPHRASE}} -PgpgPrivateKey="${{secrets.GPG_PRIVATE_KEY}}" |