-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (34 loc) · 990 Bytes
/
build.yml
File metadata and controls
41 lines (34 loc) · 990 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
41
name: Build EXE
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Install Windows 10 SDK
uses: GuillaumeFalourd/setup-windows10-sdk-action@v1
with:
sdk-version: 17763
- name: Set up MSBuild path
uses: microsoft/setup-msbuild@v1.1
- name: Build eTokenSign2 Solution
run: msbuild eTokenSign2.sln /p:Configuration=Release /p:Platform="x86"
- name: Determine Next Version and Tag
id: versioning
uses: mathieudutour/github-tag-action@v5.6
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
create_annotated_tag: true
tag_prefix: v
- name: 🚀 Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ steps.versioning.outputs.new_tag }}
body: ${{ steps.versioning.outputs.changelog }}
files: |
**/*.exe
**/*.dll