diff options
author | Nikias Bassen | 2022-01-26 00:57:53 +0100 |
---|---|---|
committer | Nikias Bassen | 2022-01-26 00:57:53 +0100 |
commit | c424e97fd7bfa02b1f14c198624d2912b60b5922 (patch) | |
tree | b3e7e6c3d7eeb25d4a2b2bcecc58e3106c471932 | |
parent | 31a353b57152e7b44254853520a06568a4a91dce (diff) | |
download | libplist-c424e97fd7bfa02b1f14c198624d2912b60b5922.tar.gz libplist-c424e97fd7bfa02b1f14c198624d2912b60b5922.tar.bz2 |
[github-actions] Make sure to fetch all tags on checkout
-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 0ca9354..20b316f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,6 +14,8 @@ jobs: run: | echo "target_triplet=`gcc -dumpmachine`" >> $GITHUB_ENV - uses: actions/checkout@v2 + with: + fetch-depth: 0 - name: autogen run: | export PYTHON=python3 @@ -48,6 +50,8 @@ jobs: pip3 install cython shell: bash - uses: actions/checkout@v2 + with: + fetch-depth: 0 - name: autogen run: | SDKDIR=`xcrun --sdk macosx --show-sdk-path` @@ -124,6 +128,8 @@ jobs: echo "dest=$dest" >> $GITHUB_ENV echo "target_triplet=`gcc -dumpmachine`" >> $GITHUB_ENV - uses: actions/checkout@v2 + with: + fetch-depth: 0 - name: autogen run: ./autogen.sh CC=gcc CXX=g++ --enable-debug - name: make |