🐎 ci(workflow): 修改为判断npm版本号,而非与之前的对比 #15
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
name: Build and Publish | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build-and-publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
registry-url: 'https://registry.npmjs.org' | |
scope: '@marherb-work' | |
- name: Check package.json version change | |
id: check_version | |
run: | | |
PACKAGE_NAME=$(node -p "require('./package.json').name") | |
CURRENT_VERSION=$(node -p "require('./package.json').version") | |
NPM_VERSION=$(npm view $PACKAGE_NAME version || echo "0.0.0") | |
if [ "$(printf '%s\n' "$CURRENT_VERSION" "$NPM_VERSION" | sort -V | tail -n1)" != "$CURRENT_VERSION" ] || [ "$NPM_VERSION" == "0.0.0" ]; then | |
echo "Current version is less than or equal to npm version, or package has not been published to npm yet." | |
echo "version_changed=false" >> $GITHUB_ENV | |
else | |
echo "Current version is greater than npm version." | |
echo "version_changed=true" >> $GITHUB_ENV | |
fi | |
- name: Install dependencies | |
if: env.version_changed == 'true' | |
run: yarn install | |
- name: Build package | |
if: env.version_changed == 'true' | |
run: yarn build | |
- name: Publish to NPM | |
if: env.version_changed == 'true' | |
run: npm publish --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |