Merge pull request #7211 from Budibase/release-selfhost-fetch-tags
Add git fetch --tags to release-selfhost
This commit is contained in:
commit
f912537ae3
|
@ -38,7 +38,9 @@ jobs:
|
|||
echo "RELEASE_VERSION=$release_version" >> $GITHUB_ENV
|
||||
|
||||
- name: Checkout tag
|
||||
run: git checkout v${{ env.RELEASE_VERSION }}
|
||||
run: |
|
||||
git fetch --tags
|
||||
git checkout v${{ env.RELEASE_VERSION }}
|
||||
|
||||
- name: Tag and release Docker images (Self Host)
|
||||
run: |
|
||||
|
|
Loading…
Reference in New Issue