Skip to content

Commit

Permalink
Fix logic for getting last tag (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
serras committed Mar 2, 2020
1 parent 8c6e398 commit d6815e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
sudo bundle install --gemfile docs/Gemfile --path vendor/bundle
- name: Build microsite from last release
run: |
LAST_TAG=$(git describe --abbrev=0)
LAST_TAG=$(git describe --abbrev=0 --tags)
git checkout $LAST_TAG
bash ./generate-haddock-docs.sh
BUNDLE_GEMFILE=./docs/Gemfile bundle exec jekyll build -b /mu-haskell -s docs -d gen-docs
Expand Down

0 comments on commit d6815e6

Please sign in to comment.