Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 1773d58

Browse files
authored
Upload VSIX artifact
1 parent 4adeec6 commit 1773d58

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/main.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ name: CI
55
env:
66
config: Release
77
githubvsSolution: GitHubVS.sln
8+
vsixContainer: GitHub.VisualStudio.vsix
89

910
# Controls when the action will run. Triggers the workflow on push or pull request
1011
# events but only for the master branch
@@ -40,4 +41,10 @@ jobs:
4041

4142
- name: MSBuild ${{ env.githubvsSolution }}
4243
run: |
43-
msbuild ${{ env.githubvsSolution }} /p:Configuration=${{ env.config }} /p:DeployExtension=False /p:GitHubVS_ClientId=${{ secrets.GitHubVS_ClientId }} /p:GitHubVS_ClientSecret=${{ secrets.GitHubVS_ClientSecret }}
44+
msbuild ${{ env.githubvsSolution }} /p:Configuration=${{ env.config }} /p:TargetVsixContainer=${{ env.vsixContainer }} /p:DeployExtension=False /p:GitHubVS_ClientId=${{ secrets.GitHubVS_ClientId }} /p:GitHubVS_ClientSecret=${{ secrets.GitHubVS_ClientSecret }}
45+
46+
- name: Upload VSIX artifact
47+
uses: actions/upload-artifact@v1
48+
with:
49+
name: vsix
50+
path: ${{ env.vsixContainer }}

0 commit comments

Comments
 (0)