From e6ac1d6a6691aee96be6e24891fb9fb448fe5624 Mon Sep 17 00:00:00 2001
From: Alexander Repeta <alexander.repeta@gmail.com>
Date: Tue, 23 Mar 2021 13:58:53 +0200
Subject: [PATCH] fix build script in workflow

---
 .github/workflows/gh-pages.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml
index 7c9b9ef..6f6cba4 100644
--- a/.github/workflows/gh-pages.yml
+++ b/.github/workflows/gh-pages.yml
@@ -2,7 +2,7 @@ name: Build and deploy to GitHub Pages
 
 on:
   push:
-    branches: [ main ]
+    branches: [main]
 
 jobs:
   build-and-deploy:
@@ -11,10 +11,10 @@ jobs:
       - name: Checkout 🛎️
         uses: actions/checkout@v2.3.1
 
-      - name: Install and Build 🔧 
+      - name: Install and Build 🔧
         run: |
           npm install
-          npm run dist
+          npm run build
 
       - name: Deploy 🚀
         uses: JamesIves/github-pages-deploy-action@4.1.0
-- 
GitLab