Skip to content

Commit faec5f7

Browse files
committed
Directly invoke Gradle in GitHub Actions
1 parent 86b93f9 commit faec5f7

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,4 @@ jobs:
2626
- name: Grant execute permission for gradlew
2727
run: chmod +x gradlew
2828
- name: Build
29-
run: |
30-
cd scripts
31-
./build.sh
29+
run: ./gradlew binDir macOSApp

.github/workflows/release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,7 @@ jobs:
2121
run: chmod +x gradlew
2222
- name: Build
2323
run: |
24-
cd scripts
25-
./build.sh
26-
cd ..
24+
./gradlew binDir macOSApp
2725
tar czf RoboViz.tar.gz bin/
2826
- name: Create Release
2927
id: create-release

0 commit comments

Comments
 (0)