fix(twitter)!: 修复Twitter 长文本显示不全 (#17596) #4822
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: | |
node-version: lts/* | |
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 "[email protected]" | |
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 }} |