diff options
| author | Fuwn <[email protected]> | 2022-02-04 17:38:04 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-06-09 00:43:14 -0700 |
| commit | 8a78f62e4cb0890cd0ed9c663a21f809013b959e (patch) | |
| tree | be25df618590569d62f3279a1c2cdffd7ddeeb08 /.github/workflows | |
| download | documentation-8a78f62e4cb0890cd0ed9c663a21f809013b959e.tar.xz documentation-8a78f62e4cb0890cd0ed9c663a21f809013b959e.zip | |
feat: setup documentation
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/deploy.yaml | 28 |
1 files changed, 28 insertions, 0 deletions
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/[email protected] + with: + access_token: ${{ github.token }} + + - name: Checkout 🛎️ + uses: actions/[email protected] + + - name: Install and Build 🔧 + run: | + pip install -r requirements.txt + ivy build + + - name: Deploy 🚀 + uses: JamesIves/[email protected] + with: + branch: gh-pages + folder: out |