-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
π¦ Change workflow name and conditions
- Updated workflow name from "Release" to "Publish" - Modified conditions for creating release pull request - Adjusted steps for publishing new version to Npm
- Loading branch information
1 parent
89eb13f
commit 27c2e8c
Showing
2 changed files
with
79 additions
and
19 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,76 @@ | ||
name: π¦ Publish | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
|
||
concurrency: ${{ github.workflow }}-${{ github.ref }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
|
||
jobs: | ||
release: | ||
name: π Release | ||
if: github.repository_owner == 'guotingchao' && github.event_name == 'pull_request' && github.event.pull_request.merged == true && github.head_ref == 'changeset-release/main' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: β¬οΈ Checkout | ||
id: checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ env.GITHUB_TOKEN }} | ||
|
||
- name: π’ Setup node | ||
id: setup-node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: latest | ||
|
||
- name: π₯‘ Setup pnpm | ||
id: setup-pnpm | ||
uses: pnpm/action-setup@v3 | ||
with: | ||
version: latest | ||
run_install: false | ||
|
||
- name: π Get pnpm store directory | ||
id: get-pnpm-cache-dir | ||
run: echo "pnpm_cache_dir=$(pnpm store path)" >> "$GITHUB_OUTPUT" | ||
|
||
- name: π Cache pnpm modules | ||
uses: actions/cache@v4 | ||
id: pnpm-cache | ||
with: | ||
path: ${{ steps.get-pnpm-cache-dir.outputs.pnpm_cache_dir }} | ||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | ||
restore-keys: | | ||
${{ runner.os }}-pnpm-store- | ||
- name: 𧩠Install Dependencies | ||
id: install-dependencies | ||
run: pnpm install | ||
|
||
- name: ποΈ Build | ||
id: build-the-library | ||
run: | | ||
pnpm build | ||
- name: π£ Create Release Pull Request and Publish new version to Npm | ||
id: changesets | ||
uses: changesets/[email protected] | ||
with: | ||
publish: pnpm run publish:release | ||
env: | ||
GITHUB_TOKEN: ${{ env.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ env.NPM_TOKEN }} | ||
|
||
- name: πΊ Publish new version to Github Packages | ||
uses: JS-DevTools/npm-publish@v3 | ||
with: | ||
token: ${{ env.GITHUB_TOKEN }} | ||
registry: "https://npm.pkg.github.com" |
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 |
---|---|---|
|
@@ -16,7 +16,7 @@ env: | |
jobs: | ||
release: | ||
name: π Release | ||
# if: github.repository_owner == 'guotingchao' && github.event.pull_request.merged == true | ||
if: github.repository_owner == 'guotingchao' && github.event.pull_request.merged == true && github.ref_name == 'develop' && github.event_name == 'pull_request' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: β¬οΈ Checkout | ||
|
@@ -60,29 +60,13 @@ jobs: | |
run: | | ||
pnpm build | ||
- name: echo ref | ||
run: | | ||
echo ${{ github.ref }} | ||
echo ${{ github.head_ref }} | ||
echo ${{ github.ref_name }} | ||
echo ${{ github.base_ref }} | ||
- name: π£ Create Release Pull Request and Publish new version to Npm | ||
if: github.head_ref == 'develop' && github.event_name == 'pull_request' | ||
- name: π£ Create Release Pull Request | ||
id: changesets | ||
uses: changesets/[email protected] | ||
with: | ||
title: "chore(release): publish new version packages π¦" | ||
version: pnpm run publish:version | ||
publish: pnpm run publish:release | ||
commit: "chore(release): publish new version packages π¦ [skip ci]" | ||
version: pnpm run publish:version | ||
env: | ||
GITHUB_TOKEN: ${{ env.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ env.NPM_TOKEN }} | ||
|
||
- name: πΊ Publish new version to Github Packages | ||
if: startsWith(github.head_ref, 'changeset-release/main') && github.event_name == 'pull_request' | ||
uses: JS-DevTools/npm-publish@v3 | ||
with: | ||
token: ${{ env.GITHUB_TOKEN }} | ||
registry: "https://npm.pkg.github.com" |