update until-build for fix error "requires build 253.*" on jetbrains … #13
Workflow file for this run
This file contains hidden or 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: Publish JetBrains Plugin | |
| on: | |
| push: | |
| tags: | |
| - "jetbrains-v*" | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: jetbrains-plugin | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: 17 | |
| - run: ./gradlew buildPlugin | |
| - run: ./gradlew publishPlugin | |
| env: | |
| PUBLISH_TOKEN: ${{ secrets.JETBRAINS_TOKEN }} |