We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56ccd13 commit 2b78475Copy full SHA for 2b78475
.github/workflows/testtag.yml
@@ -12,5 +12,10 @@ jobs:
12
steps:
13
- name: Print Tag
14
run: |
15
- echo "Tag name from GITHUB_REF_NAME: $GITHUB_REF_NAME"
16
- echo "Tag name from github.ref_name: ${{ github.ref_name }}"
+ echo "Tag name from GITHUB_REF_NAME: $GITHUB_REF_NAME"
+ echo "Tag name from github.ref_name: ${{ github.ref_name }}"
17
+ - name: Print Tag 2
18
+ run: |
19
+ git fetch --tags --force
20
+ latest_tag=$(git describe --tags --abbrev=0)
21
+
0 commit comments