Skip to content

Commit

Permalink
chore: fix workflow yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Vilsol committed Aug 13, 2024
1 parent fe87709 commit c1cb2e9
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,14 +109,14 @@ jobs:
matrix:
include:
- download_url: "${{ secrets.S3_URL_PROD }}"
s3_bucket: "smr-prod-s3",
s3_key: "${{ secrets.S3_KEY_PROD }}",
s3_secret: "${{ secrets.S3_SECRET_PROD }}",
s3_bucket: "smr-prod-s3"
s3_key: "${{ secrets.S3_KEY_PROD }}"
s3_secret: "${{ secrets.S3_SECRET_PROD }}"
s3_base_url: "https://storage.ficsit.app"
- download_url: "${{ secrets.S3_URL_STAGING }}"
s3_bucket: "smr-staging-s3",
s3_key: "${{ secrets.S3_KEY_STAGING }}",
s3_secret: "${{ secrets.S3_SECRET_STAGING }}",
s3_bucket: "smr-staging-s3"
s3_key: "${{ secrets.S3_KEY_STAGING }}"
s3_secret: "${{ secrets.S3_SECRET_STAGING }}"
s3_base_url: "https://storage-staging.ficsit.app"
steps:
- name: Check out code into the Go module directory
Expand Down Expand Up @@ -159,11 +159,11 @@ jobs:
REPO_PASETO.PUBLIC_KEY: 408c5155a389aeabf1c1b0da73ff5a3079b6aa6628e4c661b1e1ce412181cc8a
REPO_PASETO.PRIVATE_KEY: a5f7409588f6b72d443db0d432f37f1214a5ec88cb55a70e24b90194ed549465408c5155a389aeabf1c1b0da73ff5a3079b6aa6628e4c661b1e1ce412181cc8a
REPO_FEATURE_FLAGS.ALLOW_MULTI_TARGET_UPLOAD: "true"
REPO_STORAGE.READER.TYPE: "s3",
REPO_STORAGE.READER.REGION: "us-west-002",
REPO_STORAGE.READER.BUCKET: "${{ matrix.s3_bucket }}",
REPO_STORAGE.READER.KEY: "${{ matrix.s3_key }}",
REPO_STORAGE.READER.SECRET: "${{ matrix.s3_secret }}",
REPO_STORAGE.READER.ENDPOINT: "https://s3.us-west-002.backblazeb2.com",
REPO_STORAGE.READER.BASE_URL: "${{ matrix.s3_base_url }}",
REPO_STORAGE.READER.TYPE: "s3"
REPO_STORAGE.READER.REGION: "us-west-002"
REPO_STORAGE.READER.BUCKET: "${{ matrix.s3_bucket }}"
REPO_STORAGE.READER.KEY: "${{ matrix.s3_key }}"
REPO_STORAGE.READER.SECRET: "${{ matrix.s3_secret }}"
REPO_STORAGE.READER.ENDPOINT: "https://s3.us-west-002.backblazeb2.com"
REPO_STORAGE.READER.BASE_URL: "${{ matrix.s3_base_url }}"
REPO_STORAGE.READER.KEYPATH: "%s/file/%s/%s"

0 comments on commit c1cb2e9

Please sign in to comment.