fix: add keys to SchemaToCode components to force rerender upon chang… #121
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: 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 }} |