Skip to content

Commit

Permalink
Experimenting with autotagging...
Browse files Browse the repository at this point in the history
  • Loading branch information
DevOpsDave committed Jan 8, 2024
1 parent f202397 commit 73bd0d5
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions .github/workflows/release-auto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,20 @@ jobs:
- name: Unshallow
run: git fetch --prune --unshallow

- name: Version Bump (dry-run)
id: taggerDryRun
uses: GregoryGost/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
dryrun: true
prefix: v
releasetype: major

- name: echo new tag
#- name: Version Bump (dry-run)
# id: taggerDryRun
# uses: GregoryGost/[email protected]
# 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 }}"

0 comments on commit 73bd0d5

Please sign in to comment.