File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 32
32
mkdir -p ~/.gradle/
33
33
echo "GRADLE_USER_HOME=$HOME/.gradle" >> "$GITHUB_ENV"
34
34
echo "mcdev.deploy.token=${JETBRAINS_TOKEN}" > ~/.gradle/gradle.properties
35
+ - shell : bash
36
+ run : |
37
+ mkdir -p ~/.gradle/
38
+ echo -e '\norg.gradle.jvmargs=-Xmx4G\n' >> ~/.gradle/gradle.properties
35
39
- name : Publish plugin
36
40
run : ./gradlew clean :publishPlugin --stacktrace
37
41
- name : Get tag name
Original file line number Diff line number Diff line change @@ -23,14 +23,18 @@ jobs:
23
23
with :
24
24
distribution : ' temurin'
25
25
java-version : 17
26
- - uses : actions-ecosystem/action-regex-match@v2
26
+ - uses : actions-ecosystem/action-regex-match@d50fd2e7a37d0e617aea3d7ada663bd56862b9cc
27
27
id : branch-match
28
28
with :
29
29
text : ${{ github.ref }}
30
- regex : ' ^refs/heads/\d{4}\.\d$'
30
+ regex : ' ^refs\ /heads\ /\d{4}\.\d$'
31
31
- name : Setup Gradle
32
32
uses : gradle/actions/setup-gradle@v4
33
33
with :
34
34
cache-read-only : ${{ github.ref != 'refs/heads/dev' && steps.branch-match.outputs.match != '' }}
35
+ - shell : bash
36
+ run : |
37
+ mkdir -p ~/.gradle/
38
+ echo -e '\norg.gradle.jvmargs=-Xmx4G\n' >> ~/.gradle/gradle.properties
35
39
- name : Build
36
40
run : ./gradlew build --stacktrace
You can’t perform that action at this time.
0 commit comments