Skip to content

feat: initial commit #12

feat: initial commit

feat: initial commit #12

Workflow file for this run

name: Generate PDF to release
on:
push:
tags:
- '*'
jobs:
build:
name: Generate PDF to release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
- uses: microsoft/playwright-github-action@v1
- name: Generate PDF
run: npm ci && npm run pdf
- name: Upload & Release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: "*.pdf"
tag: ${{ github.ref }}
overwrite: true
file_glob: true