Skip to content

Commit

Permalink
add Deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumewuip committed Jul 21, 2023
1 parent 94ef563 commit 929be59
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/deploy-rss-to-tana.yml
@@ -0,0 +1,22 @@
name: Deploy rss-to-tana
on:
push:
branches:
- main

defaults:
run:
working-directory: rss-to-tana

jobs:
deploy:
name: Deploy app
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: superfly/flyctl-actions/setup-flyctl@v1.4
with:
version: 0.1.63 # as of 21/07/2023
- run: flyctl deploy --remote-only
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}

0 comments on commit 929be59

Please sign in to comment.