upload test results instead of non working publishing
This commit is contained in:
parent
2ab30a2bc1
commit
4d20dd65f2
@ -38,10 +38,16 @@ jobs:
|
||||
DISCORD_TEST_TOKEN: ${{ secrets.DISCORD_TOKEN }}
|
||||
run: chmod +x gradlew; ./gradlew test
|
||||
|
||||
- name: Publish Test Results
|
||||
- name: Move Test Results
|
||||
if: always()
|
||||
run: |
|
||||
mkdir test-results/;
|
||||
[ -d lib/build/test-results/test/ ] && mv lib/build/test-results/test/*.xml test-results/;
|
||||
[ -d wrapper/javacord/build/test-results/test/ ] && mv wrapper/javacord/build/test-results/test/*.xml test-results/;
|
||||
|
||||
- name: Upload Test Result
|
||||
uses: christopherhx/gitea-upload-artifact@v4
|
||||
if: always()
|
||||
uses: dorny/test-reporter@v1
|
||||
with:
|
||||
name: Test Results
|
||||
path: 'lib/build/test-results/test/*.xml,wrapper/javacord/build/test-results/test/*.xml'
|
||||
reporter: java-junit
|
||||
name: test-results
|
||||
path: test-results/
|
Loading…
x
Reference in New Issue
Block a user