Skip to content

Commit

Permalink
πŸ“¦ Change workflow name and conditions
Browse files Browse the repository at this point in the history
- 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
guotingchao committed Apr 29, 2024
1 parent 89eb13f commit 27c2e8c
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 19 deletions.
76 changes: 76 additions & 0 deletions .github/workflows/Publish.yml
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"
22 changes: 3 additions & 19 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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"

0 comments on commit 27c2e8c

Please sign in to comment.