From 60861ee254d28ab7e122aca8d9ee526a4ee07060 Mon Sep 17 00:00:00 2001 From: Furkan Sahin Date: Fri, 22 Jul 2022 15:50:35 -0400 Subject: [fixing workflow] move back to old workflow using `JamesIves/github-pages-deploy-action` --- .github/workflows/deploy.yml | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) (limited to '.github') diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 69ae404..44d0b9e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -2,16 +2,26 @@ name: Deploy to GitHub Pages on: push: - branches: [master] + branches: [ master ] jobs: - build-and-deploy: + build: runs-on: ubuntu-latest steps: - - name: Checkout 🛎️ - - uses: actions/checkout@v3 + - uses: actions/checkout@v2 - - name: Install and Build 🔧 + - name: Setup Node + uses: actions/setup-node@v2 + with: + node-version: '14' + + - name: Install and Build run: | npm ci - npm run deploy \ No newline at end of file + npm run build + + - name: Deploy to GitHub Pages + uses: JamesIves/github-pages-deploy-action@4.1.5 + with: + branch: gh-pages + folder: dist \ No newline at end of file -- cgit v1.2.3