Skip to content

Commit

Permalink
chore: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
zzzgydi authored Apr 24, 2022
1 parent a47b845 commit 497bec3
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Release CI

on: workflow_dispatch

jobs:
release-update:
runs-on: windows-latest
if: startsWith(github.repository, 'zzzgydi')
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true

- name: Build
run: cargo build --release

- name: Release
uses: softprops/action-gh-release@v1
with:
name: latest
tag_name: latest
files: target/release/clash-verge-service.exe

0 comments on commit 497bec3

Please sign in to comment.