Skip to content

Commit

Permalink
WIP: Fetch repo tags
Browse files Browse the repository at this point in the history
Seems that GitHub actions removed tag info with its git clone.  We have to
those tags back because they are used to generate the documentation.
  • Loading branch information
bartlettroscoe committed Jul 25, 2023
1 parent 644540a commit 6d522d1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/tribits_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,12 @@ jobs:
which ${{ matrix.config.cxx }}
${{ matrix.config.cxx }} --version
if [ "${{ matrix.config.fc }}" = "" ]; then echo "No fortran compiler"; else echo "Checking gfortran path and version" && which ${{ matrix.config.fc }} && ${{ matrix.config.fc }} --version; fi
- name: Fetch repo tags
run: |
echo "Running: git fetch origin 'refs/tags/*:refs/tags/*'"
git fetch origin 'refs/tags/*:refs/tags/*'
echo "Running: git tag"
git tag
- name: Run configure, build, test, and submit to CDash
run: |
cd ..
Expand Down

0 comments on commit 6d522d1

Please sign in to comment.