fix: add contrast in option in the search menu for dark themes #7
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: Release | |
on: | |
release: | |
types: [ published ] | |
env: | |
APP_VERSION: ${{ github.event.release.tag_name }} | |
JETBRAINS_TOKEN: ${{ secrets.JETBRAINS_TOKEN }} | |
jobs: | |
publish: | |
name: Publish to JetBrains Marketplace | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: adopt | |
- name: Publish to JetBrains marketplace | |
run: ./gradlew publishPlugin |