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 }}"