Skip to content

Commit

Permalink
Add SDKMan Workflow (#13304)
Browse files Browse the repository at this point in the history
Manually trigger release to SDKMan
  • Loading branch information
puneetbehl authored Dec 19, 2023
1 parent 0430484 commit 8d251cc
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/sdkman.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Release to SDKMan
on:
workflow_dispatch:
inputs:
version:
description: 'Version to release'
required: true
jobs:
sdkman:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
token: ${{ secrets.GH_TOKEN }}
ref: v${{ github.event.inputs.version }}
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '8'
- name: Grails SDK Minor Release
uses: gradle/gradle-build-action@v2
with:
arguments: sdkMinorRelease
env:
GVM_SDKVENDOR_KEY: ${{ secrets.GVM_SDKVENDOR_KEY }}
GVM_SDKVENDOR_TOKEN: ${{ secrets.GVM_SDKVENDOR_TOKEN }}
- name: Set output
id: set_output
run: |
echo ::set-output name=release_version::$(cat $GITHUB_OUTPUT)
env:
GITHUB_OUTPUT: ${{ github.workspace }}/build/release_version

0 comments on commit 8d251cc

Please sign in to comment.