Skip to content

Commit

Permalink
Update ci workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
muhammadsammy committed Sep 1, 2023
1 parent 857d36e commit 8951d6f
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,27 +41,23 @@ jobs:
- name: Build VSIXs
run: gulp 'vsix:release:package'


- name: Get package version
run: node -e "console.log('VERSION=' + require('./package.json').version)" >> $GITHUB_ENV

- name: Upload build artifact (darwin-x64)
id: upload-release-asset-darwin-x64
uses: actions/upload-artifact@v2
with:
path: ./vsix/csharp-darwin-x64-${{ env.VERSION }}.vsix
path: ./vsix/csharp-darwin-x64-*.vsix
name: csharp-darwin-x64.vsix

- name: Upload build artifact (linux-x64)
id: upload-release-asset-linux-x64
uses: actions/upload-artifact@v2
with:
path: ./vsix/csharp-linux-x64-${{ env.VERSION }}.vsix
path: ./vsix/csharp-linux-x64-*.vsix
name: csharp-linux-x64.vsix

- name: Upload build artifact (win32-x64)
id: upload-release-asset-win32-x64
uses: actions/upload-artifact@v2
with:
path: ./vsix/csharp-win32-x64-${{ env.VERSION }}.vsix
path: ./vsix/csharp-win32-x64-*.vsix
name: csharp-win32-x64.vsix

0 comments on commit 8951d6f

Please sign in to comment.