We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69b7207 commit d537974Copy full SHA for d537974
1 file changed
.github/workflows/ci.yml
@@ -25,7 +25,7 @@ jobs:
25
- name: Build
26
run: ./gradlew build --stacktrace --scan
27
28
- - name: Upload artifact
+ - name: Upload JARs
29
uses: actions/upload-artifact@v3
30
with:
31
name: jars
@@ -34,11 +34,24 @@ jobs:
34
!**/*-sources.jar
35
!**/*-javadoc.jar
36
37
+ release:
38
+ if: startsWith(github.ref, 'refs/tags/')
39
+ needs: build-linux
40
+
41
+ runs-on: ubuntu-latest
42
43
+ steps:
44
+ - name: Checkout latest code
45
+ uses: actions/checkout@v3
46
47
+ - name: Download JARs
48
+ uses: actions/download-artifact@v3
49
+ with:
50
+ name: jars
51
+ path: build/jars
52
53
- name: Release
54
uses: softprops/action-gh-release@v1
- if: startsWith(github.ref, 'refs/tags/')
55
56
files: |
- juliet-*/build/libs/*.jar
- !**/*-sources.jar
- !**/*-javadoc.jar
57
+ build/jars/*.jar
0 commit comments