diff --git a/.github/workflows/deploy-fly.yml b/.github/workflows/deploy-fly.yml new file mode 100644 index 0000000..6e8f147 --- /dev/null +++ b/.github/workflows/deploy-fly.yml @@ -0,0 +1,21 @@ +name: Deploy to Fly + +on: + push: + branches: [eclipse] + +env: + FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Setup Fly + uses: superfly/flyctl-actions/setup-flyctl@master + + - name: Deploy Web + run: flyctl deploy --remote-only \ No newline at end of file