From 73bd0d5d4be04fb1fb05af4c2ee6eb732237c879 Mon Sep 17 00:00:00 2001 From: Dave-Barcelo Date: Mon, 8 Jan 2024 17:16:36 -0500 Subject: [PATCH] Experimenting with autotagging... --- .github/workflows/release-auto.yml | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/.github/workflows/release-auto.yml b/.github/workflows/release-auto.yml index c57cb4f7..e2f97f86 100644 --- a/.github/workflows/release-auto.yml +++ b/.github/workflows/release-auto.yml @@ -49,16 +49,20 @@ jobs: - name: Unshallow run: git fetch --prune --unshallow - - name: Version Bump (dry-run) - id: taggerDryRun - uses: GregoryGost/version-tagger@v1.0.0 - with: - token: ${{ secrets.GITHUB_TOKEN }} - dryrun: true - prefix: v - releasetype: major - - - name: echo new tag + #- name: Version Bump (dry-run) + # id: taggerDryRun + # uses: GregoryGost/version-tagger@v1.0.0 + # with: + # token: ${{ secrets.GITHUB_TOKEN }} + # dryrun: true + # prefix: v + # releasetype: major + - name: Version Bump run: | - echo "The next tag version will be: ${{ steps.taggerDryRun.outputs.newtag }}" + out=$(git tags | tail -1) + echo "The last tag was: $out" + + #- name: echo new tag + # run: | + # echo "The next tag version will be: ${{ steps.taggerDryRun.outputs.newtag }}"