We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbd225f commit 7fc5f68Copy full SHA for 7fc5f68
1 file changed
.github/workflows/release.yml
@@ -24,9 +24,15 @@ jobs:
24
GA_USERNAME: ${{ secrets.PAT_USERNAME }}
25
GA_TOKEN: ${{ secrets.PAT_TOKEN }}
26
27
+ - name: Get latest Git tag
28
+ id: tag
29
+ run: |
30
+ git fetch --tags
31
+ TAG=$(git describe --tags --abbrev=0)
32
+ echo "tag=$TAG" >> $GITHUB_OUTPUT
33
- name: Get current tag
34
run: |
- echo "Tag: ${{ github.ref_name }}"
35
+ echo "Tag: ${{ steps.tag.outputs.tag }}"
36
- name: Log in to the Github Container registry
37
uses: docker/login-action@v3
38
with:
0 commit comments