mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
9 lines
412 B
Bash
9 lines
412 B
Bash
#! /usr/bin/bash
|
|
|
|
# Do not run this file without setting the environment variables, you will end up fatal error
|
|
# If you wish to run this locally, please change the env variable before running this.
|
|
|
|
cat package.json | grep -v '"private":' | grep -v '"version":' | sed "s/\(\"name\": \"element-plus\"\)/\1,\n \"version\": \"${TAG_VERSION}\"/g" > package.json
|
|
|
|
npm publish --registry ${REGISTRY} --access public
|