v1.14.0-rc.1 #43
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: Upload to release | |
on: | |
release: | |
types: [published, edited] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Upload to release | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/[email protected] | |
with: | |
java-version: 17 | |
distribution: 'adopt' | |
- name: Build with Gradle | |
run: ./gradlew build | |
- name: Upload jar to release | |
uses: AButler/[email protected] | |
with: | |
files: './build/libs/*.jar' | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |