Skip to content

Commit b9ce19c

Browse files
committed
Revert separating release step
1 parent aed8781 commit b9ce19c

1 file changed

Lines changed: 3 additions & 18 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Build
2626
run: ./gradlew build --stacktrace --scan
2727

28-
- name: Upload JARs
28+
- name: Upload artifact
2929
uses: actions/upload-artifact@v3
3030
with:
3131
name: jars
@@ -34,24 +34,9 @@ jobs:
3434
!**/*-sources.jar
3535
!**/*-javadoc.jar
3636
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-
5337
- name: Release
5438
uses: softprops/action-gh-release@v1
39+
if: startsWith(github.ref, 'refs/tags/')
5540
with:
5641
files: |
57-
build/jars/*.jar
42+
juliet-*/build/libs/*.jar

0 commit comments

Comments
 (0)