Skip to content

Commit

Permalink
ci: fix --skip-duplicate being ignored on ovsx stage
Browse files Browse the repository at this point in the history
  • Loading branch information
lukecotter committed Jan 3, 2024
1 parent b74f7ce commit 716813a
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 716813a

Please sign in to comment.