mirror of
https://github.com/sosedoff/pgweb.git
synced 2024-12-14 19:21:46 +03:00
21 lines
345 B
YAML
21 lines
345 B
YAML
name: demo deploy
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
env:
|
|
FLY_API_TOKEN: ${{ secrets.FLY_TOKEN }}
|
|
|
|
jobs:
|
|
deploy:
|
|
name: Deploy to Fly
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: superfly/flyctl-actions/setup-flyctl@master
|
|
- run: flyctl deploy --remote-only
|