diff --git a/.github/workflows/linux-build-and-test.yaml b/.github/workflows/linux-build-and-test.yaml index b55e2c80..b7815ad4 100644 --- a/.github/workflows/linux-build-and-test.yaml +++ b/.github/workflows/linux-build-and-test.yaml @@ -10,8 +10,8 @@ jobs: - name: Checkout code uses: actions/checkout@v4 with: - # also fetch tags fetch-depth: 0 + fetch-tags: true - name: Build run: | @@ -38,7 +38,7 @@ jobs: #if: ${{ github.event.type == 'PushEvent' && github.event.ref == 'refs/heads/master' }} run: | mkdir -p out - docker run -v "$(pwd)"/out:/out -w /install/bincat "bincat:ci-test" bash -x -c 'make lindist && cp -R bincat-bin-* /out; find /out' + docker run -v "$(pwd)"/out:/out -w /install/bincat "bincat:ci-test" bash -x -c 'make lindist && cp -R bincat-linux-* /out; find /out' echo "-- find --" find out diff --git a/.github/workflows/windows-build.yaml b/.github/workflows/windows-build.yaml index 72e01023..97ec6190 100644 --- a/.github/workflows/windows-build.yaml +++ b/.github/workflows/windows-build.yaml @@ -10,8 +10,8 @@ jobs: - name: Checkout code uses: actions/checkout@v4 with: - # also fetch tags fetch-depth: 0 + fetch-tags: true - name: Install OCaml uses: ocaml/setup-ocaml@v2