Skip to content
This repository has been archived by the owner on Nov 20, 2023. It is now read-only.

Release

Release #28

Workflow file for this run

name: Release
on:
workflow_dispatch:
inputs:
version:
description: Version to release
required: false
force:
description:
Force a release even when there are release-blockers (optional)
required: false
env:
NODE_OPTIONS: '--stack-trace-limit=10000'
jobs:
release:
runs-on: ubuntu-latest
name: 'Release a new version'
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GH_RELEASE_PAT }}
fetch-depth: 0
- name: Prepare release
uses: getsentry/action-prepare-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GH_RELEASE_PAT }}
with:
version: ${{ github.event.inputs.version }}
force: ${{ github.event.inputs.force }}