Skip to content

markdown examples

markdown examples #5

Workflow file for this run

name: Deploy
on:
workflow_dispatch: {}
push:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- run: yarn --frozen-lockfile
- run: yarn build
- uses: actions/configure-pages@v3
- uses: actions/upload-pages-artifact@v1
with:
path: dist
- name: Deploy
id: deployment
uses: actions/deploy-pages@v1