diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/deploy.yml | 28 |
1 files changed, 12 insertions, 16 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 44d0b9e..fccca20 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -2,26 +2,22 @@ name: Deploy to GitHub Pages on: push: - branches: [ master ] + branches: [master] jobs: - build: + build-and-deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - name: Checkout 🛎️ + - uses: actions/checkout@v3 - - name: Setup Node - uses: actions/setup-node@v2 - with: - node-version: '14' - - - name: Install and Build + - name: Install and Build 🔧 run: | npm ci - 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 + npm run deploy + + # - name: Deploy to GitHub Pages + # uses: JamesIves/github-pages-deploy-action@v4 + # with: + # branch: gh-pages + # folder: dist |
