Skip to content

Commit

Permalink
Fix issues and test
Browse files Browse the repository at this point in the history
  • Loading branch information
RenFraser committed Mar 4, 2023
1 parent c4b2532 commit 09d1256
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.get-latest-tag.outputs.tag }}
release_name: Version ${{ github.ref }}
release_name: Version ${{ steps.get-latest-tag.outputs.tag }}
draft: false
prerelease: false
- name: Upload server asset
Expand Down
3 changes: 3 additions & 0 deletions server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,9 @@ tasks.withType<Test>() {
}
}

// override the distribution name from server-<version>.zip to server.zip
tasks.distZip.get().archiveFileName.set("${project.name}.zip")

tasks.installDist {
finalizedBy("fixFilePermissions")
}
Expand Down

0 comments on commit 09d1256

Please sign in to comment.