Skip to content

Commit

Permalink
build: add CD for fly.io deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
litsynp committed Sep 5, 2023
1 parent 96794e2 commit bf1371b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: CD
on:
push:
tags:
- release/dev/v*

jobs:
deploy:
name: Deploy app
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy --remote-only
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}

0 comments on commit bf1371b

Please sign in to comment.