Skip to content

Commit

Permalink
Release test
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris7 committed Nov 15, 2024
1 parent 89b78ac commit 673b2b8
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Test

on:
push:
branches: [ "release-build" ]

env:
CARGO_TERM_COLOR: always

jobs:
release:

runs-on: [ubuntu-latest, macos-latest]

steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Build
run: cargo build --release
- uses: actions/upload-artifact@v4
with:
name: gen."${{ inputs.chosen-os }}"
path: target/release/gen
overwrite: true

0 comments on commit 673b2b8

Please sign in to comment.