We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77f91a2 commit 075f4a6Copy full SHA for 075f4a6
.github/workflows/ci.yml
@@ -36,6 +36,16 @@ jobs:
36
- name: Check out repository
37
uses: actions/checkout@v4
38
39
+ - name: Make sure Gradle wrapper is legitimate
40
+ uses: gradle/actions/wrapper-validation@v5
41
+
42
+ - name: Create and checkout branch that will be used as app name
43
+ # push events already checked out the branch
44
+ if: github.event_name == 'pull_request'
45
+ env:
46
+ BRANCH: ${{ github.head_ref }}
47
+ run: git checkout -B "$BRANCH"
48
49
- name: Set up Java JDK
50
uses: actions/setup-java@v4
51
with:
0 commit comments