mirror of
https://github.com/Stremio/stremio-shell-ng.git
synced 2026-03-11 21:27:06 +00:00
25 lines
649 B
YAML
25 lines
649 B
YAML
name: Build Installer
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-latest
|
|
steps:
|
|
# The Windows runners have autocrlf enabled by default
|
|
# which causes failures for some of rustfmt's line-ending sensitive tests
|
|
- name: disable git eol translation
|
|
run: git config --global core.autocrlf false
|
|
- name: checkout
|
|
uses: actions/checkout@v3
|
|
- name: Rust Stable
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: stable
|
|
- name: Build
|
|
run: setup\create_setup.bat
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
name: stremio-setup
|
|
path: Stremio*.exe
|