feat: english level option on form, update formSchema and fix form em… #30
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 bluesky job poster | |
on: | |
push: | |
paths: | |
- apps/bluesky-job-poster/** | |
- packages/** | |
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 ./apps/bluesky-job-poster/Dockerfile \ | |
--build-arg BSKY_EMAIL="${{ secrets.BSKY_EMAIL }}" \ | |
--build-arg BSKY_PASSWORD="${{ secrets.BSKY_PASSWORD }}" \ | |
--build-arg SUPABASE_URL="${{ secrets.SUPABASE_URL }}" \ | |
--build-arg SUPABASE_SERVICE_ROLE="${{ secrets.SUPABASE_SERVICE_ROLE }}" |