Skip to content

Commit

Permalink
Create GitHub Actions for release
Browse files Browse the repository at this point in the history
  • Loading branch information
cjee21 committed Sep 8, 2024
1 parent f56d1be commit 8c6b71b
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build and release

on:
push:
tags:
- "v*.*.*"

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: windows-latest

permissions:
contents: write

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: cargo build --release
- name: Release
uses: softprops/action-gh-release@v2
with:
files: target/release/Windows11_SupportFeed_to_HTML.exe

0 comments on commit 8c6b71b

Please sign in to comment.