diff options
| author | Bobby <[email protected]> | 2022-03-13 21:09:44 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-03-13 21:09:44 -0400 |
| commit | 19688212d42a44007ac3491ba5442ba0ee54baba (patch) | |
| tree | 797a6bb08718d8ad713db52349f385b19e35f413 | |
| parent | 2ff18e921868752f9a7aecf03978f2fc0dbd368a (diff) | |
| download | luciferreeves.github.io-19688212d42a44007ac3491ba5442ba0ee54baba.tar.xz luciferreeves.github.io-19688212d42a44007ac3491ba5442ba0ee54baba.zip | |
actions to auto deploy to fly
| -rw-r--r-- | .github/workflows/main.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..0e97220 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,13 @@ +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/[email protected] + with: + args: "deploy" |
