Prevent QuickLook from being triggered when switching input methods #113
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 Tiefsee | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Spinning up Node.js | |
id: node-with-cache | |
uses: magnetikonline/action-node-modules-cache@v1 | |
with: | |
node-version: 18.x | |
node-modules-path: Www/node_modules | |
package-lock-path: Www/package-lock.json | |
- name: Install Node.js dependencies | |
if: steps.node-with-cache.outputs.cache-hit != 'true' | |
run: | | |
cd Www | |
npm ci | |
- name: Install Rust | |
run: | | |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y | |
$env:Path += ";$env:USERPROFILE\.cargo\bin" | |
- name: Install wasm-pack | |
run: cargo install wasm-pack | |
- name: Check wasm-pack version | |
run: wasm-pack --version | |
- name: Gulp build Tiefsee | |
run: | | |
cd Www | |
gulp build | |
- name: Setup MSBuild Path | |
uses: microsoft/[email protected] | |
- name: Setup NuGet | |
uses: NuGet/[email protected] | |
- name: Restore NuGet Packages | |
run: nuget restore Tiefsee4.sln | |
- name: Build Solution and archive artifacts | |
run: msbuild Tiefsee4.sln /t:BuildAll /p:Configuration=Release /p:Platform="x64" /p:DeleteExistingFiles=True | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Tiefsee | |
path: Tiefsee.zip | |
if-no-files-found: error |