Release #43
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: | ||
push: | ||
tags: | ||
- '*.*.*' | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: false | ||
env: | ||
GRADLE_OPTS: '-Dorg.gradle.daemon=false -Dorg.gradle.java.installations.auto-detect=false -Dorg.gradle.warning.mode=fail' | ||
jobs: | ||
ci: | ||
uses: ./.github/workflows/ci.yml | ||
# permissions: | ||
# contents: read | ||
ci-low-cadence: | ||
uses: ./.github/workflows/ci-low-cadence.yml | ||
# permissions: | ||
# contents: read | ||
codeql: | ||
Check failure on line 27 in .github/workflows/release.yml GitHub Actions / ReleaseInvalid workflow file
|
||
uses: ./.github/workflows/codeql.yml | ||
# permissions: | ||
# actions: read | ||
# contents: read | ||
# security-events: write | ||
release: | ||
name: Release java artifacts | ||
permissions: | ||
contents: write | ||
packages: write | ||
needs: [ ci, ci-low-cadence, codeql ] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.ref }} | ||
- name: Create Release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: ${{ github.ref }} | ||
draft: true | ||
- name: Setup java | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'zulu' | ||
java-version: 8 | ||
- name: Setup BUILD_JAVA_HOME & BUILD_JAVA_VERSION | ||
run: | | ||
java -Xinternalversion | ||
echo "BUILD_JAVA_HOME=${JAVA_HOME}" >> $GITHUB_ENV | ||
echo "BUILD_JAVA_VERSION=8" >> $GITHUB_ENV | ||
- name: Publish a release | ||
run: ./gradlew publish | ||
env: | ||
SIGNING_GPG_SECRET_KEY: ${{ secrets.GPG_RSA_SIGN_KEY }} | ||
SIGNING_GPG_PASSWORD: ${{ secrets.GPG_RSA_SIGN_KEYPASS }} | ||
OSSRH_USERNAME: ${{ secrets.SONATYPE_CENTRAL_USERNAME }} | ||
OSSRH_PASSWORD: ${{ secrets.SONATYPE_CENTRAL_PASSWORD }} |