wat hace 4 años
padre
commit
1093a9d1b2
Se han modificado 1 ficheros con 10 adiciones y 0 borrados
  1. 10
    0
      .drone.yml

+ 10
- 0
.drone.yml Ver fichero

@@ -13,6 +13,16 @@ steps:
13 13
   - echo "${DRONE_BUILD_CREATED}"
14 14
   - git config --global user.email "${DRONE_COMMIT_AUTHOR_EMAIL}"
15 15
   - git config --global user.name "${DRONE_COMMIT_AUTHOR}"
16
+  - if [ "${PACKAGE_VERSION}" != "${LATEST_VERSION}" ]; 
17
+  then
18
+    git tag $PACKAGE_VERSION
19
+    git status
20
+    git push https://$GIT_USER:$GIT_PASSWORD@gitea.frontblock.me/fw-vendor/${DRONE_REPO_NAME}.git $PACKAGE_VERSION; 
21
+  else 
22
+    echo 'Version '
23
+    echo $LATEST_VERSION 
24
+    echo 'did not change. Don`t push tag to master'; 
25
+  fi
16 26
 
17 27
   environment:
18 28
     GIT_USER:

Loading…
Cancelar
Guardar