Skip to content

Commit

Permalink
Revert separating release step
Browse files Browse the repository at this point in the history
  • Loading branch information
Lipen committed Sep 1, 2023
1 parent aed8781 commit b9ce19c
Showing 1 changed file with 3 additions and 18 deletions.
21 changes: 3 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Build
run: ./gradlew build --stacktrace --scan

- name: Upload JARs
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: jars
Expand All @@ -34,24 +34,9 @@ jobs:
!**/*-sources.jar
!**/*-javadoc.jar
release:
if: startsWith(github.ref, 'refs/tags/')
needs: build-linux

runs-on: ubuntu-latest

steps:
- name: Checkout latest code
uses: actions/checkout@v3

- name: Download JARs
uses: actions/download-artifact@v3
with:
name: jars
path: build/jars

- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
build/jars/*.jar
juliet-*/build/libs/*.jar

0 comments on commit b9ce19c

Please sign in to comment.