Skip to content

Commit

Permalink
Merge pull request #30 from forcedotcom/d/W-14573340-scriptfix
Browse files Browse the repository at this point in the history
@W-14573340@: Fixed errors in publish script.
  • Loading branch information
jfeingold35 authored Dec 5, 2023
2 parents 052c27f + 2a78139 commit 34c7ab7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish v0.2.0 to OpenVSX marketplace
name: Publish v0.3.0 to OpenVSX marketplace
on:
# Should only be possible to run this action manually.
workflow_dispatch:
Expand All @@ -17,7 +17,7 @@ jobs:
- name: Check out the release tag
uses: actions/checkout@v3
with:
ref: 'v0.2.0'
ref: 'v0.3.0'
token: ${{ env.GITHUB_TOKEN }}
- uses: actions/setup-node@v3
with:
Expand All @@ -26,7 +26,7 @@ jobs:
- name: Download Extension from Release
run: |
mkdir ./extensions
gh release download v0.2.0 -D ./extensions
gh release download v0.3.0 -D ./extensions
- name: Display downloaded VSIX
run: ls -R ./extensions
- name: Publish the VSIX
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
- name: Display downloaded VSIX
run: ls -R ./extensions
- name: Publish the VSIX
run: find ./extensions -type f -name "*.vsix" -exec npx osvx publish {} -p ${{ env.IDEE_OVSX_PAT }} \;
run: find ./extensions -type f -name "*.vsix" -exec npx ovsx publish {} -p ${{ env.IDEE_OVSX_PAT }} \;
- run: echo "SUCCESSFULLY PUBLISHED"


0 comments on commit 34c7ab7

Please sign in to comment.