Skip to content

Commit

Permalink
Fix/release lsp workflows (#376)
Browse files Browse the repository at this point in the history
  • Loading branch information
victor-teles authored Sep 21, 2023
1 parent 3edc7c0 commit 7d0e356
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .github/workflows/release_lsp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,13 @@ jobs:
path: ./editors/intellij/build/distributions/Biome-*.zip
if-no-files-found: error

- name: Upload gradle properties file
uses: actions/upload-artifact@v3
with:
name: gradle_properties
path: ./editors/intellij/gradle.properties
if-no-files-found: error

publish-intellij:
name: Publish Intellij LSP
runs-on: ubuntu-latest
Expand All @@ -336,6 +343,12 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Download gradle properties file
uses: actions/download-artifact@v3
with:
name: gradle_properties
path: ./editors/intellij

- name: Download extension artifacts
uses: actions/download-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion editors/intellij/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pluginGroup = com.github.biomejs.intellijbiome
pluginName = Biome
pluginRepositoryUrl = https://github.com/biomejs/biome
# SemVer format -> https://semver.org
pluginVersion = 0.0.1
pluginVersion = 0.0.2

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 232
Expand Down

0 comments on commit 7d0e356

Please sign in to comment.