We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb0b557 commit 8278fb3Copy full SHA for 8278fb3
.github/workflows/c-cpp.yml
@@ -83,6 +83,10 @@ jobs:
83
uses: actions/checkout@v4
84
with:
85
submodules: recursive
86
+ - name: Get version from tag
87
+ run : |
88
+ TAGVERSION=$(git describe --tags)
89
+ echo "TAGVERSION=${TAGVERSION:1}" >> $GITHUB_ENV
90
- name: Configure and compile
91
run: |
92
mkdir build
@@ -108,5 +112,5 @@ jobs:
108
112
- name: Copy artifact
109
113
uses: actions/upload-artifact@v4
110
114
111
- name: QLog-${{github.ref_name}}-${{ matrix.os }}
115
+ name: QLog-${{ env.TAGVERSION }}-${{ matrix.os }}
116
path: /Users/runner/work/QLog/QLog/build/qlog.dmg
0 commit comments