Skip to content

Commit 9e880f9

Browse files
authored
Merge pull request #8 from simonpintarelli/fix-ci
Fixed the CI/CD.
2 parents 0f6c8f9 + 8a8ab1d commit 9e880f9

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/version_checker.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,14 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
14+
with:
15+
fetch-depth: 0
1416
- name: Version check
1517
id: check
1618
run: |
17-
mkdir build
18-
cd build
19+
mkdir build
20+
cd build
1921
cmake .. || true
2022
CMAKE_VERSION="v$(cat CMakeCache.txt | grep '^CMAKE_PROJECT_VERSION\b' | cut -d "=" -f2)"
2123
GIT_VERSION=$(git describe --tags --abbrev=0)

0 commit comments

Comments
 (0)