Skip to content

Commit

Permalink
Push 1.3 from fly acc
Browse files Browse the repository at this point in the history
  • Loading branch information
davesnx committed May 27, 2024
1 parent d120998 commit 53e6c1e
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,19 @@ jobs:
name: Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy --app fullstack-reason-react-demo --remote-only
- name: Checkout repo
uses: actions/checkout@v3

- name: Read app name
uses: SebRollen/[email protected]
id: app_name
with:
file: "fly.toml"
field: "app"

- name: Deploy
uses: superfly/[email protected]
with:
args: "deploy --remote-only --app ${{ steps.app_name.outputs.value }}"
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}

0 comments on commit 53e6c1e

Please sign in to comment.