Follow up - 0798e7d47e - moved from circle ci to github actions. Can't use tags in shallow clone of repository. Ref: https://github.com/actions/checkout#fetch-all-history-for-all-tags-and-branches

This commit is contained in:
Thorsten Eckel 2020-03-05 11:43:50 +01:00
parent 0798e7d47e
commit 48f639ab52
2 changed files with 4 additions and 0 deletions

View file

@ -16,5 +16,7 @@ jobs:
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@master uses: actions/checkout@master
- name: Fetch all history for all tags and branches
run: git fetch --prune --unshallow
- name: Build docker image - name: Build docker image
run: .github/docker-image-build.sh run: .github/docker-image-build.sh

View file

@ -16,5 +16,7 @@ jobs:
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@master uses: actions/checkout@master
- name: Fetch all history for all tags and branches
run: git fetch --prune --unshallow
- name: Build docker image - name: Build docker image
run: .github/docker-image-build.sh run: .github/docker-image-build.sh