Use tiff
files to enable high-quality icon.
#8
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
# ------------------------------------------------------------------------------ | |
# Build.yml | |
# ------------------------------------------------------------------------------ | |
name: Build | |
on: | |
push: | |
pull_request: | |
branches-ignore: | |
- master | |
- main | |
workflow_dispatch: | |
jobs: | |
Build: | |
name: Build | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Run './build/build.cmd' | |
run: ./build/build.cmd --root ./build | |
env: | |
GitHubToken: ${{ secrets.GITHUB_TOKEN }} | |
SignFile: ${{ secrets.SIGN_FILE }} | |
SignPassword: ${{ secrets.SIGN_PASSWORD }} | |
InstallationFiles: ${{ secrets.INSTALLATION_FILES }} |