1
0
Fork 0
mirror of synced 2024-10-03 19:43:32 +13:00

Fix preprod stale deploy (#10034)

This commit is contained in:
Rory Powell 2023-03-15 10:13:02 +00:00 committed by GitHub
parent 8b0841cb4f
commit 931c295c9a
2 changed files with 2 additions and 0 deletions

View file

@ -17,6 +17,7 @@ jobs:
id: version
run: |
if [ -z "${{ github.event.inputs.version }}" ]; then
git pull
release_version=$(cat lerna.json | jq -r '.version')
else
release_version=${{ github.event.inputs.version }}

View file

@ -134,6 +134,7 @@ jobs:
- name: Get the latest budibase release version
id: version
run: |
git pull
release_version=$(cat lerna.json | jq -r '.version')
echo "RELEASE_VERSION=$release_version" >> $GITHUB_ENV