Skip to content

1.1.0

1.1.0 #6

Workflow file for this run

name: Release
on:
push:
tags:
- v*
jobs:
setup:
name: πŸ›  Setup
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
- name: βŽ” Setup node
uses: actions/setup-node@v3
with:
node-version: 20.9.0
- name: πŸ“₯ Install deps
run: npm ci
- name: 🌐 Install Playwright browser
run: npx playwright install --with-deps chromium
- name: πŸ”¨ Build
run: npm run build
- name: πŸ—Ž Generate PDF
run: node ./scripts/make-pdf.mjs
- name: πŸš€ Create release
uses: fnkr/github-action-ghr@v1
env:
GHR_PATH: dist/
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}