Skip to content

refactor(index): add u unicode flag to regex #26

refactor(index): add u unicode flag to regex

refactor(index): add u unicode flag to regex #26

Workflow file for this run

name: release
on:
workflow_dispatch:
inputs:
semver:
description: "The semver to use"
required: true
default: "patch"
type: choice
options:
- patch
- minor
- major
tag:
description: "The npm tag"
required: false
default: "latest"
pull_request:
types: [closed]
branches:
- master
- 'release/**'
jobs:
call-reuseable-workflow:
uses: fastify/workflows/.github/workflows/release-package.yml@automated-release
with:
semver: ${{ github.event.inputs.semver }}
tag: ${{ github.event.inputs.tag }}
secrets:
ORG_NPM_TOKEN: ${{ secrets.ORG_NPM_TOKEN }}
ORG_MEMBER_OPTIC_TOKEN: ${{ secrets[format('ORG_OPTIC_TOKEN_{0}', github.actor)] }}