small changes to user creation #328
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
# This workflow will update the code for the staging environment | |
on: | |
pull_request: | |
push: | |
branches: ["main"] | |
name: Deploy to staging | |
jobs: | |
build_and_deploy: | |
name: Deploy | |
environment: | |
name: Staging | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
- name: Set up SAM | |
uses: aws-actions/setup-sam@v1 | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: ap-south-1 | |
- name: Build | |
run: sam build --use-container -t templates/staging.yaml | |
- name: Deploy | |
env: | |
JWT_SECRET_KEY: ${{ secrets.JWT_SECRET_KEY }} | |
DB_SERVICE_URL: ${{ secrets.DB_SERVICE_URL }} | |
DB_SERVICE_TOKEN: ${{ secrets.DB_SERVICE_TOKEN }} | |
run: sam deploy | |
--stack-name PortalBackendStaging | |
--s3-bucket af-portal-backend | |
--s3-prefix staging | |
--no-confirm-changeset | |
--no-fail-on-empty-changeset | |
--region ap-south-1 | |
--capabilities CAPABILITY_IAM | |
--parameter-overrides | |
JwtSecretKey=$JWT_SECRET_KEY | |
DbServiceUrl=$DB_SERVICE_URL | |
DbServiceToken=$DB_SERVICE_TOKEN |