From 2b41f3145ec810fa83189c55472165e6d09f3b20 Mon Sep 17 00:00:00 2001 From: Steffen Date: Sun, 20 Feb 2022 20:24:16 +0100 Subject: [PATCH] Update deploy.yml --- .github/workflows/deploy.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 914eebc..a328572 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -5,19 +5,19 @@ on: - main jobs: build-and-deploy: + concurrency: ci-${{ github.ref }} runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v1 + - name: Checkout 🛎️ + uses: actions/checkout@v2 - - name: Build - run: | - npm install - npm run-script build + - name: Install and Build 🔧 + run: | + npm ci + npm run build - - name: Deploy - uses: JamesIves/github-pages-deploy-action@releases/v3 - with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - BRANCH: gh-pages - FOLDER: dist + - name: Deploy 🚀 + uses: JamesIves/github-pages-deploy-action@v4.2.5 + with: + branch: gh-pages + folder: dist