mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
Properly skip cached builds
This commit is contained in:
parent
52fdbf3fae
commit
25ebbd3217
6
.github/workflows/build-windows.yml
vendored
6
.github/workflows/build-windows.yml
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user