Skip to content

Commit

Permalink
Merge pull request #1389 from tgodzik/fixed-release
Browse files Browse the repository at this point in the history
bugfix: Make release properly build language-server package
  • Loading branch information
tgodzik authored Apr 21, 2023
2 parents f61cdb5 + a776405 commit e65be8d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ jobs:
run: git push origin HEAD:main
- name: Publish extension
run: |
cd packages/metals-vscode
cd packages/metals-languageclient
yarn install && yarn build
cd ../metals-vscode
yarn vscode:publish -p ${{ secrets.VS_MARKETPLACE_TOKEN }}
- name: Build VSIX package
run: |
Expand All @@ -54,7 +56,9 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.get_upload_url.outputs.UPLOAD_URL }}
asset_path: ./packages/metals-vscode/metals-${{ steps.get_version.outputs.NEW_VERSION }}.vsix
asset_path:
./packages/metals-vscode/metals-${{
steps.get_version.outputs.NEW_VERSION }}.vsix
asset_name: |
scalameta.metals-${{ steps.get_version.outputs.NEW_VERSION }}.vsix
asset_content_type: application/octet-stream
Expand Down
2 changes: 1 addition & 1 deletion packages/metals-vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"ide",
"scalameta"
],
"version": "1.23.0",
"version": "1.22.7",
"publisher": "scalameta",
"contributors": [
{
Expand Down

0 comments on commit e65be8d

Please sign in to comment.