Skip to content

Commit

Permalink
playing around w/ sparse checkouts
Browse files Browse the repository at this point in the history
  • Loading branch information
bc3tech committed Jun 13, 2024
1 parent 086a6f8 commit da839f4
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
uses: actions/checkout@v4
with:
show-progress: false
sparse-checkout: |
!lib/
- name: Run unit tests
run: dotnet test ./DocGpt.Test/DocGpt.Test.csproj --configuration Release
Expand All @@ -42,6 +44,8 @@ jobs:
uses: actions/checkout@v4
with:
show-progress: false
sparse-checkout: |
!lib/
- name: Bump version
run: |
Expand Down Expand Up @@ -73,15 +77,13 @@ jobs:
uses: actions/checkout@v4
with:
show-progress: false
sparse-checkout: |
lib/linux/

- name: Download artifact
uses: actions/download-artifact@v4
with:
name: DocGPT-unsigned.vsix
path: ./DocGPT.vsix

- name: Sign Extension
run: ./lib/linux/OpenVsixSignTool sign -t "http://timestamp.digicert.com" "./DocGPT.vsix" -kvu "https://${{ secrets.AZURE_KEYVAULT_NAME }}.vault.azure.net" -kvt "${{ secrets.AZURE_TENANT_ID }}" -kvi "${{ secrets.AZURE_CLIENT_ID }}" -kvs "${{ secrets.AZURE_CLIENT_SECRET }}" -kvc "${{ secrets.SIGNING_CERTIFICATE_NAME }}"

Expand Down

0 comments on commit da839f4

Please sign in to comment.