@daiyam/artifact-vsx-ts 0.6.0 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15,9 +15,13 @@ jobs:
15
15
  - name: Publish to Open VSX Registry
16
16
  uses: HaaLeo/publish-vscode-extension@v2
17
17
  with:
18
- pat: ${{ secrets.OPEN_VSX_TOKEN }}
19
- - name: Publish to Visual Studio Marketplace
18
+ pat: ${{ secrets.TOKEN_OPENVSX }}
19
+ skipDuplicate: true
20
+ if: env.PUBLISH_OPENVSX == 'yes'
21
+ - name: Publish to Visual Studio Code Marketplace
20
22
  uses: HaaLeo/publish-vscode-extension@v2
21
23
  with:
22
- pat: ${{ secrets.VS_MARKETPLACE_TOKEN }}
24
+ pat: ${{ secrets.TOKEN_VSCODE }}
23
25
  registryUrl: https://marketplace.visualstudio.com
26
+ skipDuplicate: true
27
+ if: env.PUBLISH_VSCODE == 'yes'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daiyam/artifact-vsx-ts",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "The configuration to create Visual Studio extensions and publish them on Visual Studio Marketplace and Open VSX Registry.",
5
5
  "author": {
6
6
  "name": "Baptiste Augrain",
@@ -31,5 +31,5 @@
31
31
  "project-template",
32
32
  "scaffold"
33
33
  ],
34
- "gitHead": "c73c92c82234f1f1e6c94ef2abd076feab0b8169"
34
+ "gitHead": "65f13222eb436d78dda6eb76972a004dc9c29dc3"
35
35
  }