Skip to content

fix: page break breaks the print #27

fix: page break breaks the print

fix: page break breaks the print #27

Workflow file for this run

name: 🚀
on:
workflow_dispatch:
push:
branches:
- main
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
permissions:
id-token: write
contents: read
pages: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'yarn'
- run: yarn
- run: yarn build
env:
BASE_URL: https://y-nk.github.io
ROOT_PATH: /resume
- uses: actions/upload-pages-artifact@v1
with:
path: ./dist/
deploy:
environment:
name: Github Pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/deploy-pages@v1
id: deployment