From 41052e9e734d8ea891a226c26cb39c64978a7ae1 Mon Sep 17 00:00:00 2001 From: Luke Ceddia Date: Thu, 23 Dec 2021 23:31:52 +1100 Subject: [PATCH] Fix windows missing endpoint, bad exclusions --- .ci/common-exclusion.list | 4 ++-- .ci/deploy.ps1 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.ci/common-exclusion.list b/.ci/common-exclusion.list index 4742929fe..6e9890917 100644 --- a/.ci/common-exclusion.list +++ b/.ci/common-exclusion.list @@ -6,5 +6,5 @@ appveyor.yml .gitignore .github setup_win.bat -qb64/internal/c/mingw32 -qb64/internal/c/mingw64 +internal/c/mingw32 +internal/c/mingw64 diff --git a/.ci/deploy.ps1 b/.ci/deploy.ps1 index b41976af4..016c33693 100644 --- a/.ci/deploy.ps1 +++ b/.ci/deploy.ps1 @@ -9,4 +9,4 @@ $Filename = "qb64_development_win-${Env:PLATFORM}.7z" $Dirname = "qb64" Set-Location .. 7z a "-xr@${Dirname}\.ci\common-exclusion.list" "-xr@${Dirname}\.ci\win-exclusion.list" $Filename $Dirname -aws --endpoint-url ${S3_ENDPOINT} s3api put-object --bucket ${Bucket} --body $Filename --acl public-read --key development-builds/$Filename +aws --endpoint-url ${Env:S3_ENDPOINT} s3api put-object --bucket ${Bucket} --body $Filename --acl public-read --key development-builds/$Filename