Skip to content
This repository was archived by the owner on Oct 19, 2024. It is now read-only.

Commit d6815e6

Browse files
authored
Fix logic for getting last tag (#119)
1 parent 8c6e398 commit d6815e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
sudo bundle install --gemfile docs/Gemfile --path vendor/bundle
2121
- name: Build microsite from last release
2222
run: |
23-
LAST_TAG=$(git describe --abbrev=0)
23+
LAST_TAG=$(git describe --abbrev=0 --tags)
2424
git checkout $LAST_TAG
2525
bash ./generate-haddock-docs.sh
2626
BUNDLE_GEMFILE=./docs/Gemfile bundle exec jekyll build -b /mu-haskell -s docs -d gen-docs

0 commit comments

Comments
 (0)