Skip to content

Commit

Permalink
Add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Zerthox committed Jul 6, 2024
1 parent cb6dfe3 commit 4ff75a6
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release

on:
workflow_dispatch:
release:
types: [published]

jobs:
release:
name: Release
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-pc-windows-msvc
- run: cargo build --release
- uses: actions/upload-artifact@v3
with:
name: reffect
path: target/release/reffect.dll
- uses: softprops/action-gh-release@v1
with:
files: |
target/release/reffect.dll
deps/reffect_internal.dll

0 comments on commit 4ff75a6

Please sign in to comment.