mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-12 04:15:30 +00:00
fix staging fly deploy config
This commit is contained in:
parent
553fcb2a30
commit
feb466af2b
1 changed files with 5 additions and 3 deletions
8
.github/workflows/fly-deploy-staging.yml
vendored
8
.github/workflows/fly-deploy-staging.yml
vendored
|
|
@ -16,12 +16,14 @@ jobs:
|
|||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: 'true'
|
||||
ref: v3
|
||||
|
||||
- name: Use flyctl
|
||||
uses: superfly/flyctl-actions/setup-flyctl@master
|
||||
|
||||
- name: Deploy to fly.io
|
||||
run: flyctl deploy --local-only
|
||||
run: |
|
||||
cd $GITHUB_WORKSPACE/staging
|
||||
flyctl deploy --local-only
|
||||
env:
|
||||
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
|
||||
working-directory: ./staging
|
||||
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
|
||||
Loading…
Reference in a new issue