Skip to content

Release

Release #6

Workflow file for this run

name: 'Release'
on:
workflow_dispatch:
inputs:
version:
description: 'Version to be released.'
required: false
default: ''
type: string
base-branch:
description: 'The branch where we do this release.'
required: false
default: ''
type: string
permissions: {}
jobs:
release:
uses: OpenVoxProject/shared-actions/.github/workflows/release.yml@main
with:
allowed_owner: 'OpenVoxProject'
base-branch: ${{ github.event.inputs.base-branch }}
version: ${{ github.event.inputs.version }}
secrets:
github_pat: ${{ secrets.OPENVOXBOT_COMMIT_AND_PRS }}
ssh_private_key: ${{ secrets.OPENVOXBOT_SSH_PRIVATE_KEY }}