Skip to content

Commit

Permalink
zz
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterWone committed Mar 14, 2024
1 parent b6705d9 commit b1421b0
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
registry-url: https://registry.npmjs.org/

- name: Install dependencies
run: npm i
run: npm ci

- name: Create l10n directory
run: |
Expand Down Expand Up @@ -73,7 +73,9 @@ jobs:
- name: Bundle using Webpack
env:
VSIX_PACKAGE_PATH: ${{ steps.setup.outputs.packageName }}
run: webpack --mode production --output-path $VSIX_PACKAGE_PATH
run: |
webpack --mode production --output-path $VSIX_PACKAGE_PATH
echo $VSIX_PACKAGE_PATH

- uses: actions/upload-artifact@v3
with:
Expand All @@ -93,9 +95,6 @@ jobs:
name: Delete tag
uses: prompt/actions-delete-tag@v1

- name: Export the packageName to an environment variable
run: echo "VSIX_PACKAGE_PATH=${{ steps.setup.outputs.packageName }}" >> $GITHUB_ENV

publishMS:
name: Publish to MS marketplace
runs-on: ubuntu-latest
Expand Down

0 comments on commit b1421b0

Please sign in to comment.