summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorMatan Kushner <hello@matchai.dev>2020-01-20 12:04:53 -0500
committerMatan Kushner <hello@matchai.dev>2020-01-20 12:04:53 -0500
commit8ef238d11fc2cdf45cc7c23849e246b5b6118695 (patch)
tree5e0c0e1f2713732e9c50314f87bff97ab21aa8e9 /.github
parentf5af004d3d54ca2edc9e324311b51177539339ce (diff)
ci: Fetch all tags when generating changelog
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/generate-changelog.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/generate-changelog.yml b/.github/workflows/generate-changelog.yml
index 06d17a294..29bd91290 100644
--- a/.github/workflows/generate-changelog.yml
+++ b/.github/workflows/generate-changelog.yml
@@ -12,6 +12,9 @@ jobs:
steps:
- uses: actions/checkout@v2
+ - name: Fetch all tags
+ run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
+
- name: Generate changelog file
run: |
# Temporary fix for https://github.com/actions/setup-go/issues/14