We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6249407 commit ef98a36Copy full SHA for ef98a36
.github/workflows/publish-snapshot.yml
@@ -2,7 +2,7 @@ name: Publish SDK Snapshot artifact
2
3
on:
4
push:
5
- branches: [main]
+ branches: [main, tp/test]
6
7
env:
8
CI: true
@@ -43,3 +43,19 @@ jobs:
43
44
- name: Deploy to Maven Central
45
run: ./gradlew jreleaserDeploy
46
+
47
+ - name: Upload build artifacts and logs
48
+ if: always()
49
+ uses: actions/upload-artifact@v4
50
+ with:
51
+ name: build-logs-and-artifacts-${{ github.run_number }}
52
+ path: |
53
+ build/reports/problems/**
54
+ eppo/build/reports/**
55
+ **/build/reports/**
56
+ build/jreleaser/**
57
+ eppo/build/staging-deploy/**
58
+ **/build/staging-deploy/**
59
+ **/build/libs/**
60
+ **/hs_err_pid*.log
61
+ retention-days: 7
0 commit comments