Update packages/shared/ui/email/Header.tsx #45
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: Build auto email sender | |
on: | |
push: | |
paths: | |
- apps/auto-email-sender/** | |
- packages/** | |
- Dockerfile.auto | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 20.5.1 | |
- name: Docker Setup Buildx | |
uses: docker/[email protected] | |
- name: Install dependencies | |
run: | | |
npm install -g yarn | |
yarn install | |
- name: Build Docker Image | |
run: | | |
docker buildx build . --platform linux/arm64 --file ./Dockerfile.auto \ | |
--build-arg SECRET_KEY="${{ secrets.SECRET_KEY }}" \ | |
--build-arg RESEND_KEY="${{ secrets.RESEND_KEY }}" \ | |
--build-arg SUPABASE_URL="${{ secrets.SUPABASE_URL }}" \ | |
--build-arg SUPABASE_SERVICE_ROLE="${{ secrets.SUPABASE_SERVICE_ROLE }}" \ | |
--build-arg MONGO_ADDRESS="${{ secrets.MONGO_ADDRESS }}" \ | |
--build-arg MONGO_PASSWORD="${{ secrets.MONGO_PASSWORD }}" \ | |
--build-arg MONGO_USERNAME="${{ secrets.MONGO_USERNAME }}" \ | |
--build-arg RABBITMQ_ADDRESS="${{ secrets.RABBITMQ_ADDRESS }}" |