43 lines
1.4 KiB
YAML
43 lines
1.4 KiB
YAML
name: npm Publish
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- '.github/workflows/npm-publish.yml'
|
|
- 'tsdown-lib.config.ts'
|
|
- 'scripts/workflow/build-routes.ts'
|
|
- 'lib/**'
|
|
|
|
permissions:
|
|
id-token: write # Required for OIDC
|
|
|
|
jobs:
|
|
build:
|
|
name: npm publish
|
|
if: github.repository == 'DIYgod/RSSHub'
|
|
runs-on: ubuntu-slim
|
|
timeout-minutes: 10
|
|
env:
|
|
HUSKY: 0
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
- uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
|
|
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
|
|
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 "41898282+github-actions[bot]@users.noreply.github.com"
|
|
git config --local user.name "github-actions[bot]"
|
|
pnpx version-from-git --allow-same-version --template 'master.short'
|
|
- name: Publish to npmjs
|
|
run: pnpm publish --access public --tag latest
|