Remove some dbg! stuff #362
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows build | |
on: | |
push: | |
branches: [ master ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
profile: minimal | |
target: x86_64-pc-windows-msvc | |
- uses: Swatinem/rust-cache@v2 | |
- name: install tauri cli | |
run: cargo install tauri-cli --version "^2.0.0" --locked | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
toolchain: nightly | |
args: --bins --release | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
toolchain: nightly | |
- name: build tauri | |
run: cd cpclib-bndbuild-tauri && cargo tauri build | |
- uses: ncipollo/release-action@v1 | |
with: | |
token: "${{ secrets.GITHUB_TOKEN }}" | |
allowUpdates: true | |
removeArtifacts: false | |
prerelease: true | |
draft: false | |
tag: latest | |
name: "Development Build" | |
generateReleaseNotes: true | |
artifacts: "target/release/*.exe target/release/bundle/nsis/*.exe" | |