Skip to content

Commit

Permalink
fix(language-server): resolve issue with releasing v1.10.0 for macos …
Browse files Browse the repository at this point in the history
…and windows
  • Loading branch information
chrissimon-au authored Oct 14, 2023
1 parent fd96e94 commit 5042b5f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/contextive-vscode-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,16 @@ jobs:
id: get-version
shell: bash
working-directory: ./src/vscode/contextive
- name: Zip Language Server
- name: Zip Language Server (Ubuntu)
run: |
zip ../Contextive.LanguageServer-${{ matrix.dotnet_runtime }}-${{ steps.get-version.outputs.VERSION}}.zip *
working-directory: ./src/language-server/Contextive.LanguageServer/publish
if: ${{ contains(matrix.os, 'ubuntu') }}
- name: Zip Language Server (Others)
run: |
7z a ../Contextive.LanguageServer-${{ matrix.dotnet_runtime }}-${{ steps.get-version.outputs.VERSION}}.zip *
working-directory: ./src/language-server/Contextive.LanguageServer/publish
if: ${{ ! contains(matrix.os, 'ubuntu') }}
- name: Upload Language Server to release
uses: svenstaro/upload-release-action@v2
with:
Expand Down

0 comments on commit 5042b5f

Please sign in to comment.