Skip to content

fix JCheckBox save failed #7

fix JCheckBox save failed

fix JCheckBox save failed #7

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a package using Gradle and then publish it to GitHub packages when a release is created
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#Publishing-using-gradle
name: Auto Release
on:
push:
tags:
- 'v*'
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Get version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Checkout barnch
uses: actions/[email protected]
- name: Set up JDK 17
uses: actions/[email protected]
with:
java-version: '17'
distribution: 'temurin'
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file
- name: Build with Gradle
uses: gradle/[email protected]
with:
gradle-version: '7.4.2'
arguments: buildPlugin -PprojVersion=${{steps.get_version.outputs.VERSION}}
- name: Create Release
uses: softprops/action-gh-release@v1
with:
body: ${{steps.get_version.outputs.VERSION}}
files: build/distributions/skykoma-plugin-idea-${{steps.get_version.outputs.VERSION}}.zip