1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-05-03 13:34:03 +02:00

Try not to use the configuration cache in gradle automations at the moment

This is done because the current implementation of the gradle commands is not correct and the cache fails on GitHub actions.
This commit is contained in:
Alex Plate 2024-07-03 19:32:03 +03:00
parent f4eef04750
commit 89a3d74b93
No known key found for this signature in database
GPG Key ID: 0B97153C8FFEC09F

View File

@ -34,7 +34,7 @@ jobs:
echo "LAST_COMMIT=$(git rev-list -n 1 tags/workflow-close-youtrack)" >> $GITHUB_ENV
- name: Update YouTrack
run: ./gradlew updateYoutrackOnCommit
run: ./gradlew updateYoutrackOnCommit --no-configuration-cache # No configuration cache to avoid fails on GH Actions
env:
SUCCESS_COMMIT: ${{ env.LAST_COMMIT }}
YOUTRACK_TOKEN: ${{ secrets.YOUTRACK_TOKEN }}