Skip to content

Commit

Permalink
github: try to fix bad tag detection in github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
af-airbus committed Feb 11, 2024
1 parent 7d3b93e commit 94a3d6d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux-build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 94a3d6d

Please sign in to comment.