Skip to content

Update dependency antd to v5.21.5 #314

Update dependency antd to v5.21.5

Update dependency antd to v5.21.5 #314

Workflow file for this run

name: Build Packages and Release
on:
push:
branches: [release]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
node: ['16']
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '10.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.YARN_TOKEN }}
# - uses: actions/setup-node@v1
# with:
# registry-url: 'https://npm.pkg.github.com'
# - run: npm publish
# env:
# NODE_AUTH_TOKEN: ${{ secrets.GH }}
# - name: Create Release
# id: create_release
# uses: actions/create-release@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GH }} # This token is provided by Actions, you do not need to create your own token
# with:
# tag_name: ${{ github.ref }}
# release_name: Release ${{ github.ref }}
# body: |
# Changes in this Release
# - First Change
# - Second Change
# draft: false
# prerelease: false