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 880b70c commit bc18adbCopy full SHA for bc18adb
.github/workflows/ci.yml
@@ -22,4 +22,19 @@ jobs:
22
run: ./gradlew quickTest
23
24
- name: Build & test the full distributable
25
- run: ./gradlew distTest
+ run: ./gradlew distTest
26
+
27
+ - uses: actions/upload-artifact@v2
28
+ with:
29
+ name: distributables
30
+ path: build/libs/*-dist.jar
31
+ if-no-files-found: error
32
33
+ - name: Publish tagged release
34
+ uses: svenstaro/upload-release-action@v2
35
+ if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
36
37
+ repo_token: ${{ secrets.GITHUB_TOKEN }}
38
+ file: build/libs/*-dist.jar
39
+ file_glob: true
40
+ tag: ${{ github.ref }}
0 commit comments