From 7cb79634a135cdda10fe1e1ce50027bd77599247 Mon Sep 17 00:00:00 2001 From: MapleLeaf <19603573+itsMapleLeaf@users.noreply.github.com> Date: Thu, 30 Dec 2021 22:56:44 -0600 Subject: [PATCH] add deploy docs workflow --- .github/workflows/deploy-docs.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/deploy-docs.yml diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml new file mode 100644 index 0000000..f4980b4 --- /dev/null +++ b/.github/workflows/deploy-docs.yml @@ -0,0 +1,14 @@ +name: deploy docs +on: + push: + branches: [main] +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: superfly/flyctl-actions@master + env: + FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} + with: + args: "deploy"