Skip to content

Commit

Permalink
added build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Phoeenix05 committed Aug 12, 2023
1 parent 89dc0ed commit 0cbaf3b
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build and Release

on:
push:
branches:
- sakura

jobs:
build_releases:
strategy:
matrix:
os: [macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Install latest rust nightly
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: tauri-cli

- name: Build app bundle
run: cargo tauri build

0 comments on commit 0cbaf3b

Please sign in to comment.