feat: add exponential backoff to email sending #21
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: Deploy Production | |
on: | |
push: | |
tags: | |
- "v*" | |
workflow_dispatch: | |
env: | |
FLY_API_TOKEN: ${{ secrets.FLY_WEB_PRODUCTION_API_TOKEN }} | |
jobs: | |
deploy: | |
name: Deploy app | |
environment: production | |
runs-on: ubuntu-latest | |
concurrency: deploy-group # optional: ensure only one action runs at a time | |
steps: | |
- name: Tag release | |
uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
prerelease: false | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup flyctl | |
uses: superfly/flyctl-actions/setup-flyctl@master | |
- name: Deploy | |
run: | | |
flyctl deploy --remote-only --config fly.production.toml \ | |
--build-arg APP_URL="${{ secrets.APP_URL }}" \ | |
--build-secret DATABASE_URL="${{ secrets.DATABASE_URL }}" \ | |
--build-secret NEXTAUTH_SECRET="${{ secrets.NEXTAUTH_SECRET }}" |