chore: Remove unused miscellany #14651
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Test Staging Container Build" | |
on: | |
pull_request: | |
branches: [main] | |
env: | |
COGNITO_APP_CLIENT_ID: ${{secrets.STAGING_COGNITO_APP_CLIENT_ID}} | |
COGNITO_USER_POOL_ID: ${{ secrets.STAGING_COGNITO_USER_POOL_ID}} | |
jobs: | |
test-container: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
- name: Build Container | |
run: | | |
docker build -t base \ | |
--build-arg COGNITO_APP_CLIENT_ID=$COGNITO_APP_CLIENT_ID \ | |
--build-arg COGNITO_USER_POOL_ID=$COGNITO_USER_POOL_ID . |