-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
48 additions
and
1 deletion.
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,47 @@ | ||
name: Publish NPM Packages | ||
on: push | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '14' # 根据项目需求更改 Node.js 版本 | ||
|
||
- name: Check for package.json changes | ||
id: package-json-changes | ||
run: | | ||
CHANGED_PKG_FILES=$(git diff --name-only ${{ github.event.before }} ${{ github.sha }} -- 'packages/*/package.json') | ||
if [ -z "$CHANGED_PKG_FILES" ]; then | ||
echo "No package.json changes detected." | ||
echo "CHANGED_PACKAGES=none" >> $GITHUB_ENV | ||
else | ||
CHANGED_DIRS=$(echo "$CHANGED_PKG_FILES" | xargs -L1 dirname) | ||
echo "CHANGED_PACKAGES=$CHANGED_DIRS" >> $GITHUB_ENV | ||
echo "Changed package.json files: $CHANGED_PKG_FILES" | ||
fi | ||
- name: Publish packages | ||
if: env.CHANGED_PACKAGES != 'none' | ||
run: | | ||
for dir in $CHANGED_PACKAGES; do | ||
echo "Entering directory $dir" | ||
cd $dir | ||
PACKAGE_NAME=$(node -p "require('./package.json').name") | ||
PACKAGE_VERSION=$(node -p "require('./package.json').version") | ||
if [[ $PACKAGE_VERSION == *beta* ]]; then | ||
echo "Publishing $PACKAGE_NAME@$PACKAGE_VERSION as beta..." | ||
npm publish --tag beta | ||
else | ||
echo "Publishing $PACKAGE_NAME@$PACKAGE_VERSION..." | ||
npm publish | ||
fi | ||
cd - | ||
done | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |
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