support user accounts should not be locked #52
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: deploy prod | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
ruff: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: chartboost/ruff-action@v1 | |
mypy: | |
needs: [ruff] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: pip install -r requirements.txt | |
- run: pip install mypy | |
- run: mypy --install-types --non-interactive --explicit-package-bases --disable-error-code import-untyped . | |
deploy: | |
needs: [ruff, mypy] | |
runs-on: ubuntu-latest | |
environment: prod | |
permissions: | |
contents: 'read' | |
id-token: 'write' | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: log in to GCP | |
id: auth | |
uses: google-github-actions/auth@v2 | |
with: | |
token_format: access_token | |
project_id: ${{ secrets.PROJECT_ID }} | |
workload_identity_provider: ${{ secrets.WORKLOAD_IDENTITY_PROVIDER }} | |
service_account: ${{ secrets.DEPLOY_SERVICE_ACCOUNT }} | |
- name: Login to Artifact Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ vars.DOCKER_REGISTRY }} | |
username: oauth2accesstoken | |
password: ${{ steps.auth.outputs.access_token }} | |
- name: Build service | |
uses: docker/build-push-action@v2 | |
with: | |
push: true | |
tags: ${{ secrets.DOCKER_REPO }}/api:latest | |
- name: deploy to cloud run | |
uses: google-github-actions/deploy-cloudrun@v2 | |
with: | |
service: 'api-prod' | |
image: ${{ secrets.DOCKER_REPO }}/api:latest |