Skip to content

Fix script path

Fix script path #14

Workflow file for this run

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 main application
run: cargo build --release
- name: Build the setup proggam
run: |
& 'C:\Program Files (x86)\Inno Setup 6\ISCC.exe' '/Sstremiosign=$qC:\Program Files (x86)\Windows Kits\10\bin\10.0.17763.0\x86\signtool.exe$q sign /f $q${{ github.workspace }}\certificates\smartcode-20211118-20241118.pfx$q /p ${{ secrets.WIN_CERT_PASSWORD }} /v $f' '${{ github.workspace }}\setup\Stremio.iss'
- uses: actions/upload-artifact@v3
with:
name: stremio-setup
path: Stremio*.exe