Skip to content

Commit 98c7082

Browse files
committed
wip
1 parent 0f6b493 commit 98c7082

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test-container-build.yml renamed to .github/workflows/test-container-build-pr-or-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "Test container build"
1+
name: "Test container build for pull request or release"
22

33
on:
44
pull_request:
@@ -15,15 +15,15 @@ jobs:
1515
- name: Checkout
1616
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1717

18-
- name: Build container from pull request
18+
- name: Build container for pull request
1919
if: ${{ github.event_name == 'pull_request' }}
2020
run: |
2121
docker build -t base \
2222
--build-arg COGNITO_APP_CLIENT_ID=${{ secrets.STAGING_COGNITO_APP_CLIENT_ID }} \
2323
--build-arg COGNITO_USER_POOL_ID=${{ secrets.STAGING_COGNITO_USER_POOL_ID}} \
2424
--build-arg NEXT_SERVER_ACTIONS_ENCRYPTION_KEY=${{ secrets.STAGING_NEXT_SERVER_ACTIONS_ENCRYPTION_KEY }} .
2525
26-
- name: Build container from release
26+
- name: Build container for release
2727
if: ${{ github.event_name == 'workflow_run' }}
2828
run: |
2929
docker build -t base \

0 commit comments

Comments
 (0)