Skip to content

Commit ba0cfa5

Browse files
committed
add build workflow
1 parent 072f0ed commit ba0cfa5

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/build.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
on:
2+
push:
3+
tags:
4+
- 'v*'
5+
6+
permissions:
7+
id-token: write
8+
contents: read
9+
10+
jobs:
11+
deploy_infrastructure:
12+
name: Build
13+
runs-on: windows-latest
14+
15+
steps:
16+
# Checkout code
17+
- uses: actions/checkout@main
18+
19+
- name: Build
20+
shell: pwsh
21+
run: |
22+
.\Invoke-Build.ps1
23+
24+
- uses: ncipollo/release-action@v1
25+
with:
26+
artifacts: "Deploy/Latest"
27+
tag: ${{ github.ref }}
28+
name: "ShieldChecker ${{ github.ref }}"
29+
bodyFile: "CHANGELOG.MD"

0 commit comments

Comments
 (0)