Skip to content

chore: initial commit - @polprog/native-ui design system #1

chore: initial commit - @polprog/native-ui design system

chore: initial commit - @polprog/native-ui design system #1

Workflow file for this run

name: Release
on:
push:
branches: [master, main]
concurrency:
group: release-${{ github.ref }}
cancel-in-progress: false
permissions:
contents: write
pull-requests: write
id-token: write
jobs:
release:
name: Version & Publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: npm
registry-url: https://registry.npmjs.org
- run: npm ci
- run: npm run build --workspace=@polprog/native-ui
- name: Create Release PR or publish to npm
uses: changesets/action@v1
with:
publish: npm run release
version: npm run version
commit: "chore(release): version packages"
title: "chore(release): version packages"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_CONFIG_PROVENANCE: "true"