Skip to content

Commit

Permalink
Create release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rfuzzo committed Jun 4, 2023
1 parent e30f5de commit 56fda5b
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 @@
on: [workflow_dispatch]

name: Release

jobs:
check:
name: Check
runs-on: windows-latest
steps:
- uses: actions/checkout@v3

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

- uses: actions-rs/cargo@v1
with:
command: build
args: --release

- name: Upload a Build Artifact
uses: actions/upload-artifact@v3
with:
path: target/release/tes3edit.exe

0 comments on commit 56fda5b

Please sign in to comment.