Skip to content

Use custom fonts in PDF #3

Use custom fonts in PDF

Use custom fonts in PDF #3

Workflow file for this run

name: Create Tag on Merge
on:
pull_request:
types:
- closed
branches:
- main
jobs:
create-tag:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Get version from package.json
id: package-version
uses: martinbeentjes/npm-get-version-action@v1.3.1
- name: Create and push tag
run: |
git config user.name github-actions[bot]
git config user.email github-actions[bot]@users.noreply.github.com
git tag v${{ steps.package-version.outputs.current-version}}
git push origin v${{ steps.package-version.outputs.current-version }}