Skip to content

Commit

Permalink
fix vscode publish (#673)
Browse files Browse the repository at this point in the history
Co-authored-by: Aviram Hassan <[email protected]>
  • Loading branch information
aviramha and aviramha committed Oct 31, 2022
1 parent ce833a0 commit e1201a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ jobs:
if: github.event_name != 'workflow_dispatch'
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}
run: vsce publish ${{ steps.version.outputs.version }} --target linux-x64
run: cd vscode-ext && vsce publish ${{ steps.version.outputs.version }} --target linux-x64
- run: cp /tmp/artifacts/aarch64-unknown-linux-gnu/libmirrord_layer.so vscode-ext/
- run: |
cd vscode-ext
Expand All @@ -213,7 +213,7 @@ jobs:
if: github.event_name != 'workflow_dispatch'
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}
run: vsce publish ${{ steps.version.outputs.version }} --target linux-arm64
run: cd vscode-ext && vsce publish ${{ steps.version.outputs.version }} --target linux-arm64
- run: rm vscode-ext/libmirrord_layer.so
- run: cp /tmp/artifacts/universal-apple-darwin/libmirrord_layer.dylib vscode-ext/
# Same binary for darwin
Expand All @@ -225,7 +225,7 @@ jobs:
if: github.event_name != 'workflow_dispatch'
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}
run: vsce publish ${{ steps.version.outputs.version }} --target darwin-x64
run: cd vscode-ext && vsce publish ${{ steps.version.outputs.version }} --target darwin-x64
- run: |
cd vscode-ext
npm install
Expand Down

0 comments on commit e1201a9

Please sign in to comment.