-
Notifications
You must be signed in to change notification settings - Fork 11
40 lines (32 loc) · 964 Bytes
/
dotnet-desktop.yml
File metadata and controls
40 lines (32 loc) · 964 Bytes
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
name: DOOMSaveManager Release
on:
push:
tags:
- "*.*.*.*"
jobs:
create_release:
name: Create GitHub Release
runs-on: windows-2022
steps:
- name: Install 7Zip PowerShell Module
shell: powershell
run: Install-Module 7Zip4PowerShell -Force -Verbose
- uses: actions/checkout@master
- uses: nuget/setup-nuget@v1
- run: nuget restore DOOMSaveManager.sln
- name: Build Binary
shell: cmd
run: call .\BuildBinary.cmd
- name: Build Artifact
shell: cmd
run: call .\BuildArtifact.cmd
- name: Create Release
id: upload-release-asset-any-cpu
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ github.ref }}
token: ${{ secrets.GITHUB_TOKEN }}
files: ./DOOMSaveManager.zip
name: DOOMSaveManager ${{ github.ref }}
body: |
Automated Release by GitHub Action CI