mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
try to not execute the command if vpk avaliable in the system.
This commit is contained in:
parent
239b97b34b
commit
ffe8352935
1 changed files with 4 additions and 1 deletions
5
.github/workflows/dotnet.yml
vendored
5
.github/workflows/dotnet.yml
vendored
|
|
@ -54,7 +54,10 @@ jobs:
|
||||||
- name: Install vpk
|
- name: Install vpk
|
||||||
Install vpk tool (dotnet tool install will not reinstall if already installed)
|
Install vpk tool (dotnet tool install will not reinstall if already installed)
|
||||||
We will update the cli by removing cache
|
We will update the cli by removing cache
|
||||||
run: dotnet tool update -g vpk
|
run: |
|
||||||
|
if (!(Get-Command vpk -ErrorAction SilentlyContinue)) {
|
||||||
|
dotnet tool install -g vpk
|
||||||
|
}
|
||||||
- name: Restore dependencies
|
- name: Restore dependencies
|
||||||
run: dotnet restore
|
run: dotnet restore
|
||||||
- name: Build
|
- name: Build
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue