-
Notifications
You must be signed in to change notification settings - Fork 4
44 lines (35 loc) · 1.14 KB
/
publish.yml
File metadata and controls
44 lines (35 loc) · 1.14 KB
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
name: Publish
permissions:
contents: write
on:
push:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: get version
id: version
uses: notiz-dev/github-action-json-property@release
with:
path: 'Flow.Launcher.Plugin.VisualStudio/plugin.json'
prop_path: 'Version'
- run: echo ${{steps.version.outputs.prop}}
- name: Build
run: |
cd Flow.Launcher.Plugin.VisualStudio
dotnet publish -c Release -r win-x64 --no-self-contained Flow.Launcher.Plugin.VisualStudio.csproj
7z a -tzip "Flow.Launcher.Plugin.VisualStudio.zip" "./bin/Release/win-x64/publish/*"
- name: Publish
uses: softprops/action-gh-release@v1
with:
files: "Flow.Launcher.Plugin.VisualStudio/Flow.Launcher.Plugin.VisualStudio.zip"
tag_name: "v${{steps.version.outputs.prop}}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}