Fix version relative field bytes
#26
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: Build bytesto4t | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build-windows: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Install bun | |
uses: oven-sh/setup-bun@v2 | |
- name: Install dependencies | |
run: bun install | |
working-directory: bytesto4t | |
- name: Build Svelte app | |
run: bun run tauri build | |
working-directory: bytesto4t | |
- name: Upload build artifact | |
uses: softprops/action-gh-release@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
name: bytesto4t-artifacts | |
files: | | |
bytesto4t/src-tauri/target/release/bundle/msi/bytesto4t_0.1.0_x64_en-US.msi | |
bytesto4t/src-tauri/target/release/bundle/nsis/bytesto4t_0.1.0_x64-setup.exe |