perf: prefer dark over light #229
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Action Release | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
release: | |
permissions: | |
id-token: write | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v3 | |
- name: Set node ${{ matrix.node_version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
cache: pnpm | |
registry-url: 'https://registry.npmjs.org' | |
- run: npx changelogithub | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- run: echo "//registry.npmjs.org/:_authToken=${{ secrets.OPEN_LITE_UI }}" > ~/.npmrc | |
- run: corepack enable | |
- name: Install Dependencies | |
run: pnpm install | |
- name: PNPM build | |
run: pnpm run build | |
- name: Publish to NPM | |
run: pnpm publish --access public --no-git-checks | |
env: | |
NPM_TOKEN: ${{ secrets.OPEN_LITE_UI }} | |
NPM_CONFIG_PROVENANCE: true |