Skip to content

Development Release #324

Development Release

Development Release #324

Workflow file for this run

# This workflow builds and releases all packages with a dev dist tag. Once published,
# the packages can be installed to streamline the testing and validation of changes, both
# locally and within CI, that have not yet been approved or merged into the main branch.
name: Development Release
on:
workflow_dispatch:
inputs:
release-tag:
description: 'The tag used to release the packages under'
required: false
default: 'dev'
type: string
jobs:
build-and-release:
name: Build and release dev
uses: ./.github/workflows/release.yml
secrets: inherit
with:
release-command: node ./scripts/dev-release.mjs
release-tag: '${{ inputs.release-tag }}'
type: dev