From 252638700c668f1cc7c7c3b75e825739bceec52a Mon Sep 17 00:00:00 2001 From: Menny Even Danan Date: Sat, 4 Jul 2020 01:07:13 -0400 Subject: Deploy steps could be no-op --- .github/workflows/third_party_update.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to '.github/workflows/third_party_update.yml') diff --git a/.github/workflows/third_party_update.yml b/.github/workflows/third_party_update.yml index 3a4e35e59..7ace47e6d 100644 --- a/.github/workflows/third_party_update.yml +++ b/.github/workflows/third_party_update.yml @@ -35,8 +35,11 @@ jobs: LATEST_VERSION=$(curl --silent -u "${BOT_USERNAME}:${BOT_TOKEN}" https://api.github.com/repos/gradle/gradle/releases | jq -c -r '.[] | select(.prerelease == false) | .name' | grep -o "${GREP_VERSION_CLASSES}" | uniq | head -n 1) echo "Found version '${LATEST_VERSION}'." ./gradlew wrapper --gradle-version="${LATEST_VERSION}" + ./gradlew wrapper --gradle-version="${LATEST_VERSION}" - name: Sanity verification - run: ./gradlew :api:assembleDebug :api:lintDebug + run: | + ./gradlew :api:assembleDebug :api:lintDebug + ./gradlew :api:assembleDebug :api:lintDebug - name: Add changed gradle files run: | git add -f gradlew* -- cgit v1.2.3