feat(route): add 山青学生在线、山大研工部、山大国际网站 (#16812) #4412
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: npm Publish | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- '.github/workflows/npm-publish.yml' | |
- 'lib/**' | |
permissions: | |
id-token: write | |
jobs: | |
build: | |
name: npm publish | |
if: github.repository == 'DIYgod/RSSHub' | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
env: | |
HUSKY: 0 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
# pinned to 18 until https://github.com/compulim/version-from-git/issues/16 is fixed | |
node-version: 18 | |
cache: 'pnpm' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install dependencies (pnpm) | |
run: pnpm i | |
- name: Run postinstall script for dependencies | |
run: pnpm rb | |
- name: Release | |
run: | | |
git config --local user.email "action@github.com" | |
git config --local user.name "GitHub Action" | |
npx version-from-git --allow-same-version --template 'master.short' | |
- name: Publish to npmjs | |
run: pnpm publish --provenance --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |