Skip to content

Commit 8c6b71b

Browse files
committed
Create GitHub Actions for release
1 parent f56d1be commit 8c6b71b

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)