Skip to content

chore: update theme tokens #126

chore: update theme tokens

chore: update theme tokens #126

Workflow file for this run

name: Main
on:
push:
tags:
- v*
workflow_dispatch:
jobs:
npm:
name: Publish to Npm
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- name: Change version
id: vars
run: |
VERSION=${GITHUB_REF#refs/*/}
npm version "$VERSION" --no-git-tag-version
- name: Install dependencies
run: npm install
- name: Build
run: |
npm run build
npm run build:types
- name: Publish
run: |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
npm publish
# Slack
- name: Slack notification
uses: 8398a7/action-slack@v3
if: ${{ always() && env.SLACK_WEBHOOK_URL != 0 }}
with:
status: ${{ job.status }}
job_name: Check & Publish
fields: repo,message,commit,author,action,eventName,ref,workflow,job,took
username: GitHub Actions
icon_emoji: ':github-actions:'
channel: 'C02DQ1A7JLR'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}