From 8a78f62e4cb0890cd0ed9c663a21f809013b959e Mon Sep 17 00:00:00 2001 From: Fuwn Date: Fri, 4 Feb 2022 17:38:04 -0800 Subject: feat: setup documentation --- .github/workflows/deploy.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/deploy.yaml (limited to '.github') diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml new file mode 100644 index 0000000..5b36c8e --- /dev/null +++ b/.github/workflows/deploy.yaml @@ -0,0 +1,28 @@ +name: Deploy 🚀 +on: + push: + branches: + - main + +jobs: + build-and-deploy: + runs-on: ubuntu-latest + steps: + - name: Cancel Previous Runs 🚫 + uses: styfle/cancel-workflow-action@0.9.0 + with: + access_token: ${{ github.token }} + + - name: Checkout 🛎️ + uses: actions/checkout@v2.3.4 + + - name: Install and Build 🔧 + run: | + pip install -r requirements.txt + ivy build + + - name: Deploy 🚀 + uses: JamesIves/github-pages-deploy-action@4.1.4 + with: + branch: gh-pages + folder: out -- cgit v1.2.3