We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aed8781 commit b9ce19cCopy full SHA for b9ce19c
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 JARs
+ - name: Upload artifact
29
uses: actions/upload-artifact@v3
30
with:
31
name: jars
@@ -34,24 +34,9 @@ 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: |
57
- build/jars/*.jar
+ juliet-*/build/libs/*.jar
0 commit comments