diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/deploy-dev.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/deploy-dev.yml b/.github/workflows/deploy-dev.yml new file mode 100644 index 0000000..aac1252 --- /dev/null +++ b/.github/workflows/deploy-dev.yml @@ -0,0 +1,19 @@ +name: Fly Deploy Dev +on: + push: + branches: + - master + - main +jobs: + deploy: + name: Deploy app + environment: + name: dev + url: https://dev.pig.observer + runs-on: ubuntu-latest + env: + FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} + steps: + - uses: actions/checkout@v2 + - uses: superfly/flyctl-actions/setup-flyctl@master + - run: flyctl deploy --remote-only |