mirror of
https://github.com/kunkunsh/kunkun-ext-download-twitter-video.git
synced 2025-04-03 18:56:43 +00:00
44 lines
1.2 KiB
YAML
44 lines
1.2 KiB
YAML
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
|
|
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
|
|
|
|
name: NPM Package Publish
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
release:
|
|
types: [created]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
publish-npm:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
id-token: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 22
|
|
registry-url: https://registry.npmjs.org/
|
|
|
|
- uses: pnpm/action-setup@v2
|
|
with:
|
|
version: latest
|
|
- uses: oven-sh/setup-bun@v2
|
|
- run: bun install
|
|
- run: bun run build
|
|
- name: Check if version is already published
|
|
run: |
|
|
PACKAGE_VERSION=$(node -p "require('./package.json').version")
|
|
PACKAGE_NAME=$(jq -r '.name' package.json)
|
|
npm view $PACKAGE_NAME@$PACKAGE_VERSION
|
|
continue-on-error: true
|
|
id: check_version
|
|
- name: Publish
|
|
if: steps.check_version.outcome != 'success'
|
|
run: npm publish --provenance --access public
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|