Skip to content

Commit

Permalink
chore: add windows workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
vicanso committed Oct 15, 2024
1 parent 538ba7a commit 10e1991
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: "publish"
on:
push:
# tags: ["v[0-9]+.[0-9]+.[0-9]+*"]
branches: [windows]

env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
CARGO_TERM_COLOR: always

jobs:
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
- name: build-web
run: make build-web
- name: Install toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
components: rustfmt, clippy
- name: Run cargo release
run: |
cargo build --release --features=tracking

0 comments on commit 10e1991

Please sign in to comment.