Skip to content

Commit

Permalink
[workflow] fixed wrong gradle task names
Browse files Browse the repository at this point in the history
  • Loading branch information
liplum committed Dec 12, 2023
1 parent 7f9cbcc commit 281e67b
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/TestBuilding.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,25 +34,23 @@ jobs:
run: |
cd TestProjectKt
chmod +x gradlew
./gradlew deployMod --info
./gradlew deploy --info
./gradlew antiAlias --info
cd ..
- name: Test Groovy DSL
run: |
cd TestProjectGroovy
chmod +x gradlew
./gradlew deployMod --info
./gradlew deploy --info
./gradlew antiAlias --info
cd ..
- name: Test Multi-Project
run: |
cd TestMultiproject
chmod +x gradlew
./gradlew :main:deployMod --info
./gradlew :core:deployMod --info
./gradlew :js:zipMod --info
./gradlew :main:deploy --info
cd ..
- uses: actions/upload-artifact@v3
Expand All @@ -63,4 +61,3 @@ jobs:
TestProjectGroovy/build/tmp/deploy/*.jar
TestProjectKt/build/tmp/deploy/*.jar
TestMultiproject/main/build/tmp/deploy/*.jar
TestMultiproject/core/build/tmp/deploy/*.jar

0 comments on commit 281e67b

Please sign in to comment.