Skip to content

blog-update

blog-update #4862

Workflow file for this run

name: github pages
on:
push:
branches: [ main ]
repository_dispatch:
types: [ blog-update ]
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: '15.x'
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
- name: sleep for 90s (blog gh-pages cache)
uses: jakejarvis/wait-action@master
with:
time: '90s'
- run: npm run build
- run: npm run export
- run: touch out/.nojekyll
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./out
cname: allegro.tech