We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25b060e commit 1137298Copy full SHA for 1137298
1 file changed
.github/workflows/release.yml
@@ -21,7 +21,8 @@ jobs:
21
contents: write
22
23
steps:
24
- - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
+ - name: Get Spec Source
25
+ uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
26
with:
27
submodules: recursive
28
# If fetch-depth: 0 is not specified, then
@@ -40,6 +41,13 @@ jobs:
40
41
git config --global --add safe.directory '*'
42
ls -lda . .. .git Makefile
43
44
+ - name: Refresh Git Information
45
+ if: startsWith(github.ref, 'refs/tags/')
46
+ shell: bash
47
+ run: |
48
+ git fetch --force --tags
49
+ git checkout "${GITHUB_REF_NAME}"
50
+
51
- name: Build Specs
52
run: |
53
python3 makeSpec -clean -spec core OUTDIR=out.release -j 5 api c env ext cxx4opencl
0 commit comments