Skip to content

chore: add .dockerignore file and git to .dockerignore #2

chore: add .dockerignore file and git to .dockerignore

chore: add .dockerignore file and git to .dockerignore #2

Workflow file for this run

name: Deploy
on:
push:
branches:
- hotfix/1.9.1
jobs:
deploy:
name: Deploy to Production
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup fly
uses: superfly/flyctl-actions/setup-flyctl@master
- name: Deploy
run: flyctl deploy --remote-only --build-arg NEXT_PUBLIC_SOCKET_URL=${{ secrets.NEXT_PUBLIC_SOCKET_URL }} --build-arg NEXT_PUBLIC_SUPABASE_URL=${{secrets.NEXT_PUBLIC_SUPABASE_URL}} --build-arg NEXT_PUBLIC_SUPABASE_ANON_KEY=${{secrets.NEXT_PUBLIC_SUPABASE_ANON_KEY}}
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}