Skip to content

Commit

Permalink
chore(workflow): fix package command env
Browse files Browse the repository at this point in the history
  • Loading branch information
mxsdev committed Oct 28, 2022
1 parent e06cb25 commit 943c074
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,10 @@ jobs:
run: yarn build

- name: Package Vsix
env:
VSIX_FILENAME: typescript-explorer-v${{ env.CURRENT_VERSION }}.vsix
run: yarn workspace typescript-explorer-vscode package -o ./${{ env.VSIX_FILENAME }}
run: |
VSIX_FILENAME=typescript-explorer-v${{ env.CURRENT_VERSION }}.vsix
echo "VSIX_FILENAME=${VSIX_FILENAME}" >> $GITHUB_ENV
yarn workspace typescript-explorer-vscode package -o ./${VSIX_FILENAME}
- name: Get Changelog
run: |
Expand Down

0 comments on commit 943c074

Please sign in to comment.