Skip to content

Add first article

Add first article #43

Workflow file for this run

name: Build package
on:
push:
branches: [ master ]
tags: [ '*' ]
pull_request:
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: '20.12.0'
cache: 'yarn'
- name: install
run: yarn --frozen-lockfile
- name: build
run: yarn build
env:
BASE_PATH: /blog
- name: upload artifact
uses: actions/[email protected]
with:
path: '.output/public'
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/[email protected]