1
0
Fork 0
mirror of synced 2024-09-28 15:21:28 +12:00

Merge pull request #7212 from Budibase/release-selfhost-fetch-tags-master

Add git fetch --tags to release-selfhost
This commit is contained in:
Rory Powell 2022-08-10 16:26:01 +01:00 committed by GitHub
commit 78b78f0799
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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: |