From 233b78826f7db40234e89473a085c3c2b05d79c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Fuch=C3=9F?= Date: Thu, 16 Sep 2021 00:40:09 +0200 Subject: [PATCH] Create edge_ghpage.yml Added Build and Deploy Edge version to GH Pages --- .github/workflows/edge_ghpage.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/edge_ghpage.yml diff --git a/.github/workflows/edge_ghpage.yml b/.github/workflows/edge_ghpage.yml new file mode 100644 index 0000000..d1cbd0d --- /dev/null +++ b/.github/workflows/edge_ghpage.yml @@ -0,0 +1,19 @@ +name: Build and Deploy Edge version to GH Pages +on: [push] +jobs: + build-and-deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout 🛎️ + uses: actions/checkout@v2.3.1 + + - name: Install and Build 🔧 + run: | + yarn install + yarn build + + - name: Deploy 🚀 + uses: JamesIves/github-pages-deploy-action@4.1.5 + with: + branch: gh-pages + folder: build