diff options
| author | Bobby <[email protected]> | 2022-06-02 14:09:36 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-06-02 14:09:36 +0530 |
| commit | d726492637ae42e508b3a354a32ac0140e2a95f3 (patch) | |
| tree | 8fbe2daf4393952325c6205e94b4938041268d9a /.github | |
| parent | f0f0766dd8dcc0423699828689233fa47b708318 (diff) | |
| download | thatcomputerscientist-d726492637ae42e508b3a354a32ac0140e2a95f3.tar.xz thatcomputerscientist-d726492637ae42e508b3a354a32ac0140e2a95f3.zip | |
Hello world basic
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/main.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..77ceb10c --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,12 @@ +name: Fly Deploy +on: [push] +env: + FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} +jobs: + deploy: + name: Deploy app + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: superfly/flyctl-actions/setup-flyctl@master + - run: flyctl deploy --remote-only |
