Skip to content

Commit

Permalink
add release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
chayleaf committed Jul 5, 2023
1 parent c2f9c64 commit 7b7b795
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Rust
on:
push:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: rs-action
uses: MidKnightXI/rs-actions@d9fc5f4e55331ae271d6d82d3fdfc895ec5d2e74
with:
publish-release: true
build-win32:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: rs-action
uses: MidKnightXI/rs-actions@d9fc5f4e55331ae271d6d82d3fdfc895ec5d2e74
with:
publish-release: true
build-darwin:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: rs-action
uses: MidKnightXI/rs-actions@d9fc5f4e55331ae271d6d82d3fdfc895ec5d2e74
with:
target: x86_64-apple-darwin
publish-release: true


0 comments on commit 7b7b795

Please sign in to comment.