Skip to content

Commit

Permalink
Actually create zip release
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonBein authored Aug 25, 2023
1 parent 409dbce commit 0b0a974
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/maven-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,19 @@ jobs:
env:
GITHUB_TOKEN: ${{ github.token }}

- name: Prepare zipping
- name: Prepare as .zip
run: |
cp -r ./target/libs ./zip
mv ./target/*.jar ./zip/scylla.jar
- name: Publish as .zip
- name: Create .zip
uses: thedoctor0/[email protected]
with:
type: 'zip'
directory: './zip'
filename: 'scylla.zip'
- name: Upload Zip
uses: ncipollo/[email protected]
with:
artifacts: "scylla.zip"
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 0b0a974

Please sign in to comment.