fix(rules): fix taskbar flashing in game #45
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 | |
- pull_request | |
jobs: | |
core-build: | |
runs-on: windows-latest | |
timeout-minutes: 3 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Autoit Compiler Toolkit | |
uses: whatk233/setup-autoit-compiler-toolkit@main | |
- name: Setup Deno | |
uses: denoland/setup-deno@v1.1.1 | |
with: | |
deno-version: v1.x | |
- name: Generate/Build TIS Core | |
run: "deno task build" | |
- name: Check tis.exe exists | |
run: 'Get-Item $env:GITHUB_WORKSPACE\build\tis.exe' | |
- name: Compress Zip | |
run: 'Compress-Archive -Path $env:GITHUB_WORKSPACE\build\* -DestinationPath ${env:GITHUB_WORKSPACE}\build\TIS_${env:TIS_VERSION}_${env:GITHUB_REF_NAME}_${env:TIS_SHORTHASH}.zip' | |
shell: powershell | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
path: | | |
build/*.zip |