Skip to content

Commit e0afb19

Browse files
authored
Merge pull request #120 from Sharpie/swap-contains
Use string equality to detect s3.osuosl.org
2 parents 294d48d + 9ea58ff commit e0afb19

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build_ezbake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
bundle exec rake "vox:build[${BUILD_REF}]"
118118
119119
- name: Configure OSUOSL CA Certificate for S3
120-
if: contains(secrets.S3_ENDPOINT_URL, 's3.osuosl.org')
120+
if: ( secrets.S3_ENDPOINT_URL == 'https://s3.osuosl.org' )
121121
uses: ./.github/actions/setup-osuosl-ca
122122

123123
- name: Upload output to S3

.github/workflows/build_ezbake_fips.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
bundle exec rake "vox:build[${BUILD_REF}]"
113113
114114
- name: Configure OSUOSL CA Certificate for S3
115-
if: contains(secrets.S3_ENDPOINT_URL, 's3.osuosl.org')
115+
if: ( secrets.S3_ENDPOINT_URL == 'https://s3.osuosl.org' )
116116
uses: ./.github/actions/setup-osuosl-ca
117117

118118
- name: Upload output to S3

.github/workflows/build_vanagon.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ jobs:
288288
- name: Configure OSUOSL CA Certificate for S3
289289
if: >-
290290
inputs.upload_to_s3 &&
291-
contains(secrets.S3_ENDPOINT_URL, 's3.osuosl.org')
291+
( secrets.S3_ENDPOINT_URL == 'https://s3.osuosl.org' )
292292
uses: ./.github/actions/setup-osuosl-ca
293293

294294
- name: Upload output to S3

0 commit comments

Comments
 (0)