Skip to content

feat(client): create deterministic semaphore id (#14) #27

feat(client): create deterministic semaphore id (#14)

feat(client): create deterministic semaphore id (#14) #27

Workflow file for this run

name: Deploy
on:
workflow_dispatch:
push:
branches: [main]
paths: ["apps/server/**", "!**/*.md", ".github/workflows/deploy.yml"]
jobs:
deployment:
environment:
name: rideau-server-prod
url: https://rideau.fly.dev
name: Deploy Rideau Server to production
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: superfly/flyctl-actions/setup-flyctl@master
- name: Deploy
run: |
flyctl deploy \
--config apps/server/fly.toml \
--dockerfile apps/server/Dockerfile \
--remote-only
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}