mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
40 lines
1,002 B
YAML
40 lines
1,002 B
YAML
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: macos-latest-xlarge
|
|
permissions:
|
|
contents: read
|
|
id-token: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: "20.x"
|
|
registry-url: "https://registry.npmjs.org"
|
|
|
|
- name: Install dependencies
|
|
run: npm install
|
|
|
|
- name: Build docs
|
|
run: npm run build:docs
|
|
|
|
- name: Prune package.json
|
|
run: npx culls --preserve=svelte
|
|
|
|
- name: Publish package (stable)
|
|
if: ${{ ! contains(github.ref, '-next') }}
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
|
|
run: |
|
|
npm publish --provenance --access public
|
|
|
|
- name: Publish package (next)
|
|
if: ${{ contains(github.ref, '-next') }}
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
|
|
run: |
|
|
npm publish --provenance --access public --tag next
|