Skip to content

Commit

Permalink
Fix the paths for the artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
CalvinAllen committed Apr 16, 2023
1 parent 264b069 commit a1cc636
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,25 +25,25 @@ jobs:
- name: Publishing x86 Artifact
uses: actions/upload-artifact@v3
with:
path: "./EncouragePackage.x86/bin/x86/Debug/Encourage.x86.vsix"
path: "./EncouragePackage.x86/bin/x86/Release/Encourage.x86.vsix"
name: latest-x86

- name: Publishing x64 Artifact
uses: actions/upload-artifact@v3
with:
path: "./EncouragePackage.x64/bin/x64/Debug/Encourage.x64.vsix"
path: "./EncouragePackage.x64/bin/x64/Release/Encourage.x64.vsix"
name: latest-x64

# - name: Publish x86 to Marketplace
# uses: CalvinAllen/action-vs-marketplace-publish@v1
# with:
# marketplace-pat: ${{ secrets.VS_MARKETPLACE_TOKEN }}
# publish-manifest-path: ./EncouragePackage.x86/extension.manifest.json
# vsix-path: ./EncouragePackage.x86/bin/x86/Debug/Encourage.x86.vsix
# vsix-path: ./EncouragePackage.x86/bin/x86/Release/Encourage.x86.vsix

# - name: Publish x64 to Marketplace
# uses: CalvinAllen/action-vs-marketplace-publish@v1
# with:
# marketplace-pat: ${{ secrets.VS_MARKETPLACE_TOKEN }}
# publish-manifest-path: ./EncouragePackage.x64/extension.manifest.json
# vsix-path: ./EncouragePackage.x64/bin/x64/Debug/Encourage.x64.vsix
# vsix-path: ./EncouragePackage.x64/bin/x64/Release/Encourage.x64.vsix

0 comments on commit a1cc636

Please sign in to comment.