-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: allow consolidated storybook to reference local storybook inst…
…ances (#386) * chore: add local references for storybook * chore: add canary releases back in for now * chore: format
- Loading branch information
Showing
6 changed files
with
194 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Release - canary | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
release-canary: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
id-token: write | ||
contents: write | ||
if: | | ||
github.repository == 'carbon-design-system/carbon-labs' | ||
timeout-minutes: 60 | ||
steps: | ||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
with: | ||
fetch-depth: '0' | ||
- run: | | ||
git config user.name carbon-bot | ||
git config user.email [email protected] | ||
- name: Use Node.js 18.x | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20.x' | ||
cache: 'yarn' | ||
- name: Install dependencies | ||
run: yarn install | ||
- name: Build project | ||
run: yarn build | ||
- name: Set NPM token | ||
run: | | ||
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc | ||
- name: Publish canary release of packages | ||
run: | | ||
yarn lerna publish --canary --preid canary --dist-tag canary --yes |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Release | ||
|
||
## on every merge to the main branch, lerna will publish a minor version for packages that have been modified | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
release: | ||
# if: github.event.pull_request.merged == true | ||
runs-on: ubuntu-latest | ||
permissions: | ||
id-token: write | ||
contents: write | ||
timeout-minutes: 60 | ||
steps: | ||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
with: | ||
fetch-depth: '0' | ||
- run: | | ||
git config user.name carbon-bot | ||
git config user.email [email protected] | ||
- name: Use Node.js 18.x | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20.x' | ||
cache: 'yarn' | ||
- name: Install dependencies | ||
run: yarn install | ||
- name: Build project | ||
run: yarn build | ||
- name: Set NPM token | ||
run: | | ||
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc | ||
- name: Publish minor release of packages | ||
run: | | ||
yarn lerna publish minor --dist-tag latest --yes --message 'chore: release' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.MERGE_ACTION }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,49 @@ | ||
name: Release | ||
|
||
## on every merge to the main branch, lerna will publish a minor version for packages that have been modified | ||
on: | ||
push: | ||
branches: | ||
- main | ||
run-name: | ||
${{ inputs.type }} - dry-run:${{ inputs.dry-run }} by @${{ github.actor }} | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
type: | ||
required: true | ||
description: 'Specify the type of release' | ||
type: choice | ||
default: first minor rc | ||
options: | ||
- full minor release | ||
- first minor rc | ||
- full patch release | ||
- first patch rc | ||
- subsequent rc | ||
dry-run: | ||
required: true | ||
description: 'Run dry run?' | ||
type: boolean | ||
default: true | ||
|
||
jobs: | ||
release: | ||
# if: github.event.pull_request.merged == true | ||
runs-on: ubuntu-latest | ||
permissions: | ||
id-token: write | ||
contents: write | ||
if: | | ||
github.repository == 'carbon-design-system/carbon-labs' | ||
timeout-minutes: 60 | ||
env: | ||
GH_TOKEN: ${{ secrets.MERGE_ACTION }} | ||
steps: | ||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
with: | ||
fetch-depth: '0' | ||
- run: | | ||
git config user.name carbon-bot | ||
git config user.email [email protected] | ||
git config --global user.email ${{ secrets.CARBON_BOT_EMAIL }} | ||
git config --global user.name ${{ secrets.CARBON_BOT_NAME }} | ||
- name: Use Node.js 18.x | ||
uses: actions/setup-node@v4 | ||
with: | ||
|
@@ -37,9 +56,33 @@ jobs: | |
- name: Set NPM token | ||
run: | | ||
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc | ||
- name: Publish minor release of packages | ||
- name: Set dry run env variable | ||
run: | | ||
if [ "${{ github.event.inputs.dry-run }}" == "false" ]; then | ||
echo "DRY_RUN=--yes" >> $GITHUB_ENV | ||
fi | ||
- name: Publish full minor release (ie. v1.x.0) | ||
if: github.event.inputs.type == 'full minor release' | ||
run: | | ||
echo "DRY RUN: ${{ env.DRY_RUN }}" | ||
yarn lerna publish minor --conventional-graduate $(echo "${{ env.DRY_RUN }}") $(echo "${{ env.FORCE_PUBLISH }}") | ||
- name: Publish first minor RC (ie. v1.x.0-rc.0) | ||
if: github.event.inputs.type == 'first minor rc' | ||
run: | | ||
echo "DRY RUN: ${{ env.DRY_RUN }}" | ||
yarn lerna publish preminor --conventional-prerelease --preid rc --pre-dist-tag next $(echo "${{ env.DRY_RUN }}") $(echo "${{ env.FORCE_PUBLISH }}") | ||
- name: Publish full patch release (ie. v1.0.x) | ||
if: github.event.inputs.type == 'full patch release' | ||
run: | | ||
echo "DRY RUN: ${{ env.DRY_RUN }}" | ||
yarn lerna publish patch --conventional-graduate $(echo "${{ env.DRY_RUN }}") $(echo "${{ env.FORCE_PUBLISH }}") | ||
- name: Publish first patch RC (ie. v1.0.x-rc.0) | ||
if: github.event.inputs.type == 'first patch rc' | ||
run: | | ||
echo "DRY RUN: ${{ env.DRY_RUN }}" | ||
yarn lerna publish prepatch --conventional-prerelease --preid rc --pre-dist-tag next $(echo "${{ env.DRY_RUN }}") $(echo "${{ env.FORCE_PUBLISH }}") | ||
- name: Publish subsequent RC (ie. v1.0.0-rc.x) | ||
if: github.event.inputs.type == 'subsequent rc' | ||
run: | | ||
yarn lerna publish minor --dist-tag latest --yes --message 'chore: release' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
PERSONAL_ACCESS_TOKEN: ${{ secrets.MERGE_ACTION }} | ||
echo "DRY RUN: ${{ env.DRY_RUN }}" | ||
yarn lerna publish --conventional-prerelease --preid rc --pre-dist-tag next $(echo "${{ env.DRY_RUN }}") $(echo "${{ env.FORCE_PUBLISH }}") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters