Skip to content

Commit

Permalink
idk what im doing at this point
Browse files Browse the repository at this point in the history
  • Loading branch information
AnAwesomGuy committed Aug 28, 2024
1 parent 0f0367c commit 8312782
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/buildAndTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
run: |
chmod +x ./gradlew
./gradlew runMainTest
cp -a build/libs/. generated/
build_5:
runs-on: ubuntu-latest
steps:
Expand All @@ -37,6 +38,7 @@ jobs:
run: |
chmod +x ./gradlew
./gradlew runJava5Test
cp -a build/libs/. generated/
upload:
needs: [build_latest, build_5]
runs-on: ubuntu-latest
Expand All @@ -45,5 +47,7 @@ jobs:
continue-on-error: true
uses: actions/upload-artifact@v4
with:
name: artifacts
path: build/libs/*.jar
path: generated
- name: delete generated
continue-on-error: true
run: rm -r generated/
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.gradle
build/
generated/
!gradle/wrapper/gradle-wrapper.jar
!**/src/main/**/build/
!**/src/test/**/build/
Expand Down

0 comments on commit 8312782

Please sign in to comment.