-
-
Notifications
You must be signed in to change notification settings - Fork 11
65 lines (53 loc) · 1.73 KB
/
vsix.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
name: VSIX
on:
workflow_dispatch:
push:
paths-ignore:
- '.github/workflows/**'
- '!.github/workflows/vsix.yml'
- 'images/**'
- 'README.md'
- 'LICENSE'
- 'src/publish-manifest.json'
- 'src/publish.ps1'
branches:
- '*'
pull_request:
branches:
- '*'
env:
VERSION: 1.7.0.${{ github.run_number }}
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Update Version
run: ((Get-Content -Path VSPackage/source.extension.vsixmanifest -Raw) -Replace "1.0.0", "${{ env.VERSION }}") | Set-Content -Path VSPackage/source.extension.vsixmanifest
working-directory: src
shell: pwsh
- name: Restore
run: dotnet restore
working-directory: src
- name: Setup MSBuild.exe
uses: microsoft/[email protected]
- name: Build
run: msbuild /property:Configuration=Release /t:Rebuild
working-directory: src
- name: Move build output
run: mv src/VSPackage/bin/Release/ResWFileCodeGenerator.vsix ResWFileCodeGenerator-${{ env.VERSION }}.vsix
- name: Publish artifacts
uses: actions/upload-artifact@v4
with:
name: Artifacts
path: |
*.vsix
docs/Marketplace.md
- name: Publish to Open VSIX Gallery
if: github.ref == 'refs/heads/master'
run: |
(new-object Net.WebClient).DownloadString("https://raw.github.com/madskristensen/ExtensionScripts/master/AppVeyor/vsix.ps1") | iex
Vsix-PushArtifacts
Vsix-PublishToGallery -path ResWFileCodeGenerator-${{ env.VERSION }}.vsix -readmeUrl https://raw.githubusercontent.com/christianhelle/reswcodegen/master/docs/Marketplace.md
shell: pwsh
continue-on-error: true