Skip to content

Release (Dry Run)

Release (Dry Run) #13

name: Release (Dry Run)
on:
workflow_dispatch:
inputs:
bumpType:
description: Semver bump type to use ("major"/"minor"/"patch")
required: true
default: patch
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: '0'
submodules: recursive
- id: release
uses: anothrNick/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEFAULT_BUMP: ${{ github.event.inputs.bumpType }}
TAG_CONTEXT: branch
RELEASE_BRANCHES: main,releases.*
WITH_V: true
DRY_RUN: true
VERBOSE: true