Skip to content

Commit 4270888

Browse files
authored
Merge pull request blowfishpro#209 from blowfishpro/FixCI
put region on all aws commands
2 parents 88b7c30 + 9b16d61 commit 4270888

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-and-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Download KSP DLLs
4343
id: download-ksp-dlls
4444
run: |
45-
aws --no-sign-request s3 cp s3://blowfish-ksp-dlls/ksp-${{ steps.set-ksp-version.outputs.ksp-version }}.zip '/tmp/KSP_DLLs.zip'
45+
aws --no-sign-request --region us-east-1 s3 cp s3://blowfish-ksp-dlls/ksp-${{ steps.set-ksp-version.outputs.ksp-version }}.zip '/tmp/KSP_DLLs.zip'
4646
KSP_DLL_PATH="/opt/ksp/assembly/${{ steps.set-ksp-version.outputs.ksp-version }}"
4747
echo "::set-output name=ksp-dll-path::${KSP_DLL_PATH}"
4848
mkdir -p "${KSP_DLL_PATH}"
@@ -119,7 +119,7 @@ jobs:
119119
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
120120
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
121121
run:
122-
aws s3 cp "${{ steps.download-release.outputs.download-path }}/GameData/B9PartSwitch/B9PartSwitch.version" "s3://blowfish-ksp-b9partswitch-avc/versions/$(git describe --tags)/B9PartSwitch.version"
122+
aws --region us-east-1 s3 cp "${{ steps.download-release.outputs.download-path }}/GameData/B9PartSwitch/B9PartSwitch.version" "s3://blowfish-ksp-b9partswitch-avc/versions/$(git describe --tags)/B9PartSwitch.version"
123123
- name: Package release
124124
id: package-release
125125
working-directory: ${{ steps.download-release.outputs.download-path }}

0 commit comments

Comments
 (0)