Skip to content

Commit

Permalink
Adicionando workflow de deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
camilamaia committed Nov 6, 2024
1 parent 8639f19 commit 2be6579
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/fly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Deploy to Fly.io

on:
push:
branches:
- main

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Check out the repository
uses: actions/checkout@v4

- name: Set up Fly.io CLI
uses: superfly/flyctl-actions@1.5
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
with:
args: "deploy --remote-only"

0 comments on commit 2be6579

Please sign in to comment.