Deploy #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy | |
on: | |
workflow_run: | |
workflows: | |
- Integração contínua # Certifique-se que este nome está correto | |
types: | |
- completed | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
environment: | |
name: production | |
url: https://eventex.fly.dev | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Fly | |
uses: superfly/flyctl-actions/setup-flyctl@master | |
- name: Deploy | |
run: flyctl deploy --remote-only --strategy immediate | |
env: | |
FLY_API_TOKEN: ${{ secrets.FLY_TOKEN }} |