Skip to content
Merged
Show file tree
Hide file tree
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
47 changes: 22 additions & 25 deletions .github/workflows/release-it.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,42 +12,39 @@ on:
- 'public/*'
workflow_dispatch:
inputs:
release_type:
description: 'Release type'
required: true
type: choice
options:
- release
- prerelease
default: release
increment:
description: Override Default Version Increment
description: 'Override Default Version Increment (optional)'
required: false
default: ''
dist_tag:
description: 'Pre-release dist tag (only used for prerelease)'
required: false
default: 'alpha'

permissions:
contents: write
id-token: write

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Necessary to generate changelog from commit history
- uses: volta-cli/action@v4
fetch-depth: 0

- name: git config
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"

- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
- uses: nicksteffens/npm-oidc-release@v1
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-

- run: yarn install --immutable

- name: Configure NPM with auth token
run: npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

- run: yarn release ${{ github.event.inputs.increment }}
release_type: ${{ inputs.release_type || 'release' }}
increment: ${{ inputs.increment }}
dist_tag: ${{ inputs.dist_tag }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3 changes: 3 additions & 0 deletions .release-it.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
"github": {
"release": true
},
"npm": {
"skipChecks": true
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [2.3.2-oidc.3](https://github.com/movableink/fluid/compare/2.3.2-oidc.2...2.3.2-oidc.3) (2025-12-05)

## [2.3.2-oidc.2](https://github.com/movableink/fluid/compare/2.3.2-oidc.1...2.3.2-oidc.2) (2025-12-05)

## [2.3.2-oidc.1](https://github.com/movableink/fluid/compare/2.3.2-oidc.0...2.3.2-oidc.1) (2025-12-05)

## [2.3.2-oidc.0](https://github.com/movableink/fluid/compare/2.3.1...2.3.2-oidc.0) (2025-12-05)

## [2.3.1](https://github.com/movableink/fluid/compare/2.3.0...2.3.1) (2025-11-06)

## [2.3.0](https://github.com/movableink/fluid/compare/2.2.0...2.3.0) (2025-11-06)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@movable/fluid",
"version": "2.3.1",
"version": "2.3.2-oidc.3",
"description": "Fluid is Movable Ink's design framework for its apps.",
"homepage": "https://movableink.github.io/fluid/docs",
"scripts": {
Expand Down