Browse Source

fix

master
wat 5 years ago
parent
commit
c2b295fd2e
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      .drone.yml

+ 2
- 2
.drone.yml View File

67
   commands:
67
   commands:
68
   - git config --global user.email "frontwork.me@gmail.com"
68
   - git config --global user.email "frontwork.me@gmail.com"
69
   - git config --global user.name "drone"
69
   - git config --global user.name "drone"
70
-  - PACKAGE_VERSION $(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]')
71
-  - LATEST_VERSION $(npm view rpclibrary | grep latest | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]')
70
+  - export PACKAGE_VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]')
71
+  - export LATEST_VERSION=$(npm view rpclibrary | grep latest | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]')
72
   - >- if [ "${PACKAGE_VERSION}" != "${LATEST_VERSION}" ]; 
72
   - >- if [ "${PACKAGE_VERSION}" != "${LATEST_VERSION}" ]; 
73
     then
73
     then
74
       git tag $PACKAGE_VERSION
74
       git tag $PACKAGE_VERSION

Loading…
Cancel
Save