Update deploy.yml

This commit is contained in:
Steffen 2022-02-20 20:24:16 +01:00 committed by GitHub
parent 9575a8eca3
commit 2b41f3145e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 12 deletions

View File

@ -5,19 +5,19 @@ on:
- main - main
jobs: jobs:
build-and-deploy: build-and-deploy:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout 🛎️
uses: actions/checkout@v1 uses: actions/checkout@v2
- name: Build - name: Install and Build 🔧
run: | run: |
npm install npm ci
npm run-script build npm run build
- name: Deploy - name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@releases/v3 uses: JamesIves/github-pages-deploy-action@v4.2.5
with: with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} branch: gh-pages
BRANCH: gh-pages folder: dist
FOLDER: dist