-
-
Notifications
You must be signed in to change notification settings - Fork 9
89 lines (75 loc) · 2.49 KB
/
workflow.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
name: RunAsAdmin
on:
push:
branches:
- main
- 'feature/**'
env:
version: '2.0.${{ github.run_number }}'
repoUrl: ${{ github.server_url }}/${{ github.repository }}
jobs:
build:
name: Build
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Update Assembly Version
uses: dannevesdantas/set-version-assemblyinfo@v.1.0.0
with:
version: ${{ env.version }}
- name: Update Vsix Version
uses: cezarypiatek/VsixVersionAction@1.0
with:
version: ${{ env.version }}
vsix-manifest-file: 'RunAsAdmin\source.extension.vsixmanifest'
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1.0.2
- name: NuGet restore
run: nuget restore RunAsAdmin.sln
- name: Build VSIX
run: msbuild RunAsAdmin.sln /t:Rebuild /p:Configuration=Release
env:
DeployExtension: False
- name: Publish Build Artifacts
uses: actions/upload-artifact@v2
with:
name: RunAsAdmin
path: |
**\*.vsix
publish-manifest.json
readme.md
release:
name: Release
needs: build
runs-on: windows-latest
environment: Release
steps:
- name: Download artifact
uses: actions/download-artifact@v2
- name: Tag release
id: tag_release
uses: mathieudutour/github-tag-action@v5.6
with:
custom_tag: '${{ env.version }}'
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Create a GitHub release
uses: ncipollo/release-action@v1
with:
tag: ${{ steps.tag_release.outputs.new_tag }}
name: ${{ steps.tag_release.outputs.new_tag }}
body: ${{ steps.tag_release.outputs.changelog }}
artifacts: "**/*.vsix"
- name: Publish to Marketplace
uses: cezarypiatek/VsixPublisherAction@0.1
with:
extension-file: RunAsAdmin/RunAsAdmin/bin/release/RunAsAdmin.vsix
publish-manifest-file: RunAsAdmin/publish-manifest.json
personal-access-code: ${{ secrets.VS_PUBLISHER_ACCESS_TOKEN }}
- name: Publish to Open VSIX Gallery
uses: leandro-hermes/action-upload-file@v1.1.0
with:
host: 'www.vsixgallery.com'
path: '/api/upload?repo=${{ env.repoUrl }}&issuetracker=${{ env.repoUrl }}/issues'
https: true
filePath: RunAsAdmin/RunAsAdmin/bin/release/RunAsAdmin.vsix