mirror of
https://github.com/danbulant/oxc
synced 2026-05-19 04:08:41 +00:00
25 lines
572 B
YAML
25 lines
572 B
YAML
name: Release NAPI Transform
|
|
|
|
permissions: {}
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- npm/oxc-transform/package.json # Please only commit this file, so we don't need to wait for test CI to pass.
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
release:
|
|
name: Release NAPI Transform
|
|
uses: ./.github/workflows/reusable_release_napi.yml
|
|
with:
|
|
name: transform
|
|
secrets:
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
permissions:
|
|
id-token: write # for `pnpm publish --provenance`
|