From 25ebbd3217eac513a023c9b0a9dbee09c16bc6f8 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Fri, 30 Sep 2022 16:47:20 -0700 Subject: Properly skip cached builds --- .github/workflows/build-windows.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.github') diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index fe378fb5..c08f5a44 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -41,7 +41,7 @@ jobs: - name: Build obfs4proxy shell: pwsh run: | - if ((Test-Path -Path 'project\desktop\onionshare\resources\tor\obfs4proxy.exe') -eq $True) { + if ((Test-Path -Path 'desktop\onionshare\resources\tor\obfs4proxy.exe') -eq $True) { Write-Output "obfs4proxy already built" } else { cd desktop @@ -57,7 +57,7 @@ jobs: - name: Build snowflake shell: pwsh run: | - if ((Test-Path -Path 'project\desktop\onionshare\resources\tor\snowflake-client.exe') -eq $True) { + if ((Test-Path -Path 'desktop\onionshare\resources\tor\snowflake-client.exe') -eq $True) { Write-Output "snowflake already built" } else { cd desktop @@ -73,7 +73,7 @@ jobs: - name: Build meek shell: pwsh run: | - if ((Test-Path -Path 'project\desktop\onionshare\resources\tor\meek-client.exe') -eq $True) { + if ((Test-Path -Path 'desktop\onionshare\resources\tor\meek-client.exe') -eq $True) { Write-Output "meek already built" } else { cd desktop -- cgit v1.2.3-54-g00ecf