Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ on:
description: "The environment to deploy to."
required: false
type: string
INSTALL_UV:
description: "Whether to install uv in this workflow so later release workflow can run uv commands. Defaults to false."
required: false
type: boolean
default: false
secrets:
RELEASE_GH_TOKEN:
description: "GitHub Token. Used to authenticate with GitHub at release step. This will overwrite the use of the default GitHub token."
Expand Down Expand Up @@ -75,6 +80,12 @@ jobs:
echo "::error title=Develop branch out of date::Develop branch is not up to date with main. Please update develop before releasing."
exit 1

- name: Install uv
if: inputs.INSTALL_UV
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
with:
enable-cache: true

- name: Setup Node.js
uses: actions/setup-node@v6
with:
Expand Down
Loading