Add DefichainPython knowledge to JellyChat #38
Workflow file for this run
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: Fly.io Backend Staging | |
on: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
env: | |
FLY_API_TOKEN: ${{ secrets.STAGING_FLY_DEPLOY_TOKEN }} | |
jobs: | |
deploy: | |
name: Deploy staging backend | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: superfly/flyctl-actions/setup-flyctl@master | |
- name: Deploy backend | |
run: flyctl deploy --remote-only -a jellychat-staging | |
working-directory: backend |