diff options
author | siddharth ravikumar <s@ricketyspace.net> | 2022-06-04 20:03:18 -0400 |
---|---|---|
committer | siddharth ravikumar <s@ricketyspace.net> | 2022-06-04 20:03:18 -0400 |
commit | 3972f11931971bdec680981c69ee0bedc6d5e0e7 (patch) | |
tree | e65f8cbd1d4f302a1080c60414b70ca96df04585 /.github | |
parent | 47f8899d80e9392878b593a6e9650616a48a27a0 (diff) |
.github/workflows: add deploy.yml
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/deploy.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..123e081 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,17 @@ +name: peach-deploy +on: + push: + branches: + - main + tags: + - v0.* +env: + FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} +jobs: + deploy: + name: deploy peach + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: superfly/flyctl-actions/setup-flyctl@master + - run: flyctl deploy --remote-only |