diff options
author | Cebtenzzre <cebtenzzre@gmail.com> | 2023-09-15 15:18:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-15 15:18:15 -0400 |
commit | 69eb67e28275cd2d57693405f768754a7b2245ad (patch) | |
tree | 5103603210171d2706cde75fd9ce90dd9aecdcb1 | |
parent | 4fe09dfe665c58a753dc9eb638dd4dca1cd35488 (diff) |
fix build numbers by setting fetch-depth=0 (#3197)
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 641dbccd..8b869f68 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -281,6 +281,8 @@ jobs: - name: Clone id: checkout uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Download OpenCL SDK id: get_opencl @@ -397,6 +399,8 @@ jobs: - name: Clone id: checkout uses: actions/checkout@v3 + with: + fetch-depth: 0 - uses: Jimver/cuda-toolkit@v0.2.11 id: cuda-toolkit @@ -485,6 +489,8 @@ jobs: - name: Clone id: checkout uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Determine tag name id: tag |