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