Skip to content

Commit

Permalink
Merge pull request certinia#471 from lukecotter/chore-fix-pre-release…
Browse files Browse the repository at this point in the history
…-job

chore: fix --skip-duplicate being ignored on ovsx stage
  • Loading branch information
lcottercertinia authored Jan 3, 2024
2 parents b74f7ce + 716813a commit 1b55aaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd-prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,11 @@ jobs:
echo "Publish to vsce
vsix name: $pkgPath"
vsce publish --packagePath ${pkgPath} --no-dependencies --pre-release -p ${{ secrets.VSCE_TOKEN }} --skip-duplicate
vsce publish --packagePath ${pkgPath} --no-dependencies --pre-release --skip-duplicate -p ${{ secrets.VSCE_TOKEN }}
echo "
Publish to ovsx"
ovsx publish ${pkgPath} --no-dependencies --pre-release -p ${{ secrets.OVSX_TOKEN }} --skip-duplicate
ovsx publish ${pkgPath} --no-dependencies --pre-release --skip-duplicate -p ${{ secrets.OVSX_TOKEN }}
- name: Update pre-release tag
run: |
echo "Updating pre release tag"
Expand Down

0 comments on commit 1b55aaa

Please sign in to comment.