diff --git a/.github/workflows/cs-update-push.yml b/.github/workflows/cs-update-push.yml index 87fffdf..1fb0e4f 100644 --- a/.github/workflows/cs-update-push.yml +++ b/.github/workflows/cs-update-push.yml @@ -44,7 +44,7 @@ jobs: with: github-server-url: ${{ github.server_url }} repository: gmetribin/deploy-tools - ref: v1.1.17 + ref: v1.1.18 path: deploy-tools # token: $\{{ github.token }} # DEFAULT / Any pushes with github.token don't trigger a chained build diff --git a/src/repo_to_cs.sh b/src/repo_to_cs.sh index 1c61e21..396f051 100755 --- a/src/repo_to_cs.sh +++ b/src/repo_to_cs.sh @@ -40,8 +40,10 @@ main() done <<< "$KUST_FILES_LINES" source $SCRIPT_DIR/repo_to_cs_basetag.sh; + # cat $NEW_TAG > version; #To always allow a commit + # git add version; git commit -m "$NEW_TAG: $IMAGE updated to $IMAGE_TAG"; - git tag -a $NEW_VER -m "$NEW_VER: $IMAGE updated to $IMAGE_TAG" + git tag -a $NEW_TAG -m "$NEW_TAG: $IMAGE updated to $IMAGE_TAG" } ### Starts here