Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build_python_runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ permissions:
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_DEFAULT_REGION: "us-east-1"
S3_BUCKET: "heroku-buildpack-python"
AWS_DEFAULT_REGION: "us-west-2"
S3_BUCKET: "mrelief-general-production"

# Unfortunately these jobs cannot be easily written as a matrix since `matrix.exclude` does not
# support expression syntax, and the `matrix` context is not available inside the job `if` key.
Expand Down
2 changes: 1 addition & 1 deletion lib/python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# however, it helps Shellcheck realise the options under which these functions will run.
set -euo pipefail

S3_BASE_URL="https://heroku-buildpack-python.s3.us-east-1.amazonaws.com"
S3_BASE_URL="https://mrelief-general-production.s3.us-west-2.amazonaws.com"

function python::install() {
local build_dir="${1}"
Expand Down
Loading