We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f56d1be commit 8c6b71bCopy full SHA for 8c6b71b
1 file changed
.github/workflows/release.yml
@@ -0,0 +1,27 @@
1
+name: Build and release
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - "v*.*.*"
7
8
+env:
9
+ CARGO_TERM_COLOR: always
10
11
+jobs:
12
+ build:
13
14
+ runs-on: windows-latest
15
16
+ permissions:
17
+ contents: write
18
19
+ steps:
20
+ - name: Checkout
21
+ uses: actions/checkout@v4
22
+ - name: Build
23
+ run: cargo build --release
24
+ - name: Release
25
+ uses: softprops/action-gh-release@v2
26
+ with:
27
+ files: target/release/Windows11_SupportFeed_to_HTML.exe
0 commit comments