Improved naming of output files.
This commit is contained in:
parent
1a5cda8b3b
commit
9bf299558f
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -22,7 +22,7 @@ jobs:
|
||||
- name: Release
|
||||
uses: ncipollo/release-action@v1
|
||||
with:
|
||||
artifacts: 'cli/build/distributions/*'
|
||||
artifacts: 'cli/build/distributions/*.tar,cli/build/distributions/*.zip'
|
||||
name: ${{ env.GITHUB_REF_NAME }}
|
||||
tag: ${{ env.GITHUB_REF_NAME }}
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
4
build.gradle
Normal file
4
build.gradle
Normal file
@ -0,0 +1,4 @@
|
||||
subprojects {
|
||||
group = 'com.jessebrault.ssg'
|
||||
version = '0.0.1'
|
||||
}
|
@ -40,6 +40,17 @@ dependencies {
|
||||
|
||||
application {
|
||||
mainClassName = 'com.jessebrault.ssg.StaticSiteGeneratorCli'
|
||||
applicationName = 'ssg'
|
||||
}
|
||||
|
||||
jar {
|
||||
archivesBaseName = "ssg-cli"
|
||||
}
|
||||
|
||||
distributions {
|
||||
main {
|
||||
distributionBaseName = 'ssg'
|
||||
}
|
||||
}
|
||||
|
||||
test {
|
||||
|
@ -53,6 +53,10 @@ dependencies {
|
||||
testRuntimeOnly 'org.apache.logging.log4j:log4j-core:2.19.0'
|
||||
}
|
||||
|
||||
jar {
|
||||
archivesBaseName = 'ssg-lib'
|
||||
}
|
||||
|
||||
test {
|
||||
useJUnitPlatform()
|
||||
}
|
Loading…
Reference in New Issue
Block a user