Skip to content

Commit 5311d8d

Browse files
committed
Fix CICD
1 parent 600344a commit 5311d8d

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build_and_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
steps:
3131
- name: Checkout Repository
3232
uses: actions/checkout@v6
33-
- name: Apply patch to gradle.properties
34-
run: sed -i 's/debug_all = false/debug_all = true/g' gradle.properties
33+
- name: Apply patch to buildscript.properties
34+
run: sed -i 's/debug_all = false/debug_all = true/g' buildscript.properties
3535

3636
- name: Setup Build
3737
uses: ./.github/actions/build_setup

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ jobs:
5252
fi
5353
5454
- name: Set version
55-
run: sed -i "s/modVersion.*=.*/modVersion = ${{ env.FULL_VERSION }}/g" gradle.properties
55+
run: sed -i "s/modVersion.*=.*/modVersion = ${{ env.FULL_VERSION }}/g" buildscript.properties
5656

57-
- name: Commit and push gradle.properties
57+
- name: Commit and push buildscript.properties
5858
uses: stefanzweifel/git-auto-commit-action@v7
5959
with:
6060
commit_message: "Bump version to v${{ env.FULL_VERSION }}"
6161
commit_options: '--no-verify'
62-
file_pattern: gradle.properties
62+
file_pattern: buildscript.properties
6363
tagging_message: "v${{ env.FULL_VERSION }}"
6464

6565
- name: Setup Build

.github/workflows/test_java.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
- name: Checkout Repository
2020
uses: actions/checkout@v6
2121

22-
- name: Apply patch to build.gradle
23-
run: sed -i 's/debug_all = false/debug_all = true/g' gradle.properties
22+
- name: Apply patch to buildscript.properties
23+
run: sed -i 's/debug_all = false/debug_all = true/g' buildscript.properties
2424

2525
- name: Setup Build
2626
uses: ./.github/actions/build_setup

0 commit comments

Comments
 (0)