babel-plugin-jsx/.github/workflows/release.yml

46 lines
913 B
YAML
Raw Normal View History

2023-06-22 12:14:02 +08:00
name: Release
on:
push:
tags:
- 'v*'
jobs:
release:
runs-on: ubuntu-latest
2023-06-25 16:33:34 +08:00
permissions:
2023-06-25 16:55:45 +08:00
contents: write
2023-06-25 16:33:34 +08:00
id-token: write
2023-06-22 12:14:02 +08:00
steps:
- uses: actions/checkout@v4
2023-06-22 12:14:02 +08:00
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v2
- name: Set node
uses: actions/setup-node@v4
2023-06-22 12:14:02 +08:00
with:
node-version: lts/*
cache: pnpm
registry-url: 'https://registry.npmjs.org'
- run: npx changelogithub
continue-on-error: true
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Install Dependencies
run: pnpm i
- name: PNPM build
run: pnpm run build
2023-06-22 12:14:02 +08:00
- name: Publish to NPM
2023-06-25 17:12:45 +08:00
run: pnpm -r publish --access public --no-git-checks
2023-06-22 12:14:02 +08:00
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
2023-06-25 17:12:45 +08:00
NPM_CONFIG_PROVENANCE: true