feat: use cacheClient instead of create a new redis client (#109) #97
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: Build and Push | |
on: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.sha }} | |
cancel-in-progress: true | |
env: | |
TAG: ${{ github.sha }} | |
REGISTRY: ${{ vars.REGISTRY_URL }}/${{ github.repository }} | |
jobs: | |
build-push: | |
name: Build and Push | |
runs-on: [ ubuntu-latest ] | |
environment: production | |
strategy: | |
matrix: | |
app: ['web-ui', 'api'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Login to docker registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{env.REGISTRY}}/${{ matrix.app }} | |
username: ${{ secrets.REGISTRY_USERNAME }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup Docker metadata | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: ${{env.REGISTRY}}/${{ matrix.app }} | |
tags: | | |
type=raw,value=${{ env.TAG }} | |
type=raw,value=cache | |
flavor: | | |
latest=false | |
- name: Build and Push ${{ matrix.app }} | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
file: packages/${{ matrix.app }}/Dockerfile | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
cache-from: | | |
type=registry,ref=${{env.REGISTRY}}/${{ matrix.app }}:${{ env.TAG }} | |
type=registry,ref=${{env.REGISTRY}}/${{ matrix.app }}:${{ env.TAG }}:cache | |
cache-to: type=inline | |
build-args: | | |
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=${{ vars.NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY }} | |
CLERK_SECRET_KEY=${{ secrets.CLERK_SECRET_KEY }} | |
API_URL=${{ vars.API_URL }} | |
NEXT_PUBLIC_API_URL=${{ vars.NEXT_PUBLIC_API_URL }} | |
NEXT_PUBLIC_SOCKET_URL=${{ vars.NEXT_PUBLIC_SOCKET_URL }} | |
deploy-production: | |
name: Deploy | |
needs: build-push | |
uses: ./.github/workflows/on-call-deploy.yaml | |
strategy: | |
matrix: | |
app: ['web-ui', 'api'] | |
with: | |
ENVIRONMENT: production | |
APP: ${{ matrix.app }} | |
secrets: inherit |