Skip to content

Commit

Permalink
fix(ci): make git history available to release action
Browse files Browse the repository at this point in the history
  • Loading branch information
piofinn committed May 19, 2020
1 parent 3ecee08 commit 1fd1ca5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- master
- "**"

jobs:
build-and-publish:
Expand All @@ -14,6 +15,8 @@ jobs:
uses: actions/checkout@v2
with:
token: ${{ secrets.BOT_PUBLISH_TOKEN }}
fetch-depth: "0" # fetch entire git history
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* # fetch version tags

- name: Configure CI Git User
run: |
Expand Down

0 comments on commit 1fd1ca5

Please sign in to comment.