Skip to content

Commit

Permalink
Fixed .yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexVOiceover committed Jan 23, 2024
1 parent 873a6ed commit 03a1af5
Showing 1 changed file with 16 additions and 40 deletions.
56 changes: 16 additions & 40 deletions .github/workflows/fly.yml
Original file line number Diff line number Diff line change
@@ -1,41 +1,17 @@
name: Fly Deploy

on:

push:

branches:

main


jobs:

deploy:

name: Deploy app

runs-on: ubuntu-latest

concurrency: deploy-group # optional: ensure only one action runs at a time

steps:



uses: actions/checkout@v3




uses: superfly/flyctl-actions/setup-flyctl@master




run: flyctl deploy --remote-only


env:

name: Fly Deploy
on:
push:
branches:
- main

jobs:
deploy:
name: Deploy app
runs-on: ubuntu-latest
concurrency: deploy-group # optional: ensure only one action runs at a time
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 03a1af5

Please sign in to comment.