Update draw distances option to match new FL++ features #215
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 | |
on: push | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Install Inno | |
run: | | |
choco install innosetup | |
- name: Add mod zip | |
run: | | |
type NUL > ${{ github.workspace }}\Assets\Mod\freelancerhde.7z | |
shell: cmd | |
- name: Compile script | |
run: | | |
"%programfiles(x86)%\Inno Setup 6\iscc.exe" "setup.iss" | |
shell: cmd |