fix: upgrade to new version of EAP 243.18137.10 (#92) #56
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
on: | |
push: | |
tags: | |
- 'v*' | |
name: Release | |
jobs: | |
deployable: | |
name: Stable IJ Plugin | |
strategy: | |
matrix: | |
release_type: [release, eap] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Init Hermit | |
run: | | |
./bin/hermit env -r >> $GITHUB_ENV | |
./bin/hermit install -d | |
- name: Test | |
run: | | |
./bin/gradle test --info | |
- name: Publish | |
env: | |
RELEASE_TYPE: ${{ matrix.release_type }} | |
JETBRAINS_TOKEN: ${{ secrets.JETBRAINS_PLUGIN_TOKEN }} | |
run: | | |
export IJ_PLUGIN_VERSION=$(git describe --tags --abbrev=0 | sed s,^v,,) | |
echo "IJ_PLUGIN_VERSION=$IJ_PLUGIN_VERSION" >> $GITHUB_ENV | |
./bin/gradle patchPluginXml | |
./bin/gradle publishPlugin |