Skip to content

switch formatting and linting to biome.js (#33) #22

switch formatting and linting to biome.js (#33)

switch formatting and linting to biome.js (#33) #22

Workflow file for this run

name: Deploy Login
on:
workflow_dispatch:
push:
paths:
- "apps/login/**"
- "packages/**"
branches:
- main
tags:
- login-v*
jobs:
deploy:
runs-on: ubuntu-latest
environment: ${{ startsWith(github.ref, 'refs/tags/') && 'production' || 'development' }}
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Set up flyctl
uses: superfly/flyctl-actions/setup-flyctl@master
- name: Deploy
run: flyctl deploy --config ./apps/login/fly.toml --app ${{ vars.LOGIN_APP_NAME }} --remote-only --build-secret dotenv="${{ secrets.LOGIN_ENV }}"
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}