Build fixes

This commit is contained in:
Syer10
2021-09-28 21:28:42 -04:00
parent dbb12d60ed
commit e43eb28fa9
2 changed files with 3 additions and 2 deletions

View File

@@ -109,6 +109,8 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Download Build Artifacts - name: Download Build Artifacts
uses: actions/download-artifact@v2 uses: actions/download-artifact@v2
@@ -141,7 +143,6 @@ jobs:
| jq -r '.[]|"- \(.message | first) (@\(.username))"') | jq -r '.[]|"- \(.message | first) (@\(.username))"')
{delimiter}" >> $GITHUB_ENV {delimiter}" >> $GITHUB_ENV
- uses: ncipollo/release-action@v1 - uses: ncipollo/release-action@v1
with: with:
artifacts: "*/binaries/main/*/*.*,*/jars/*.jar" artifacts: "*/binaries/main/*/*.*,*/jars/*.jar"

View File

@@ -50,7 +50,7 @@ private fun Task.onlyIfSigning(project: Project) {
onlyIf { onlyIf {
DefaultNativePlatform.getCurrentOperatingSystem().isMacOsX DefaultNativePlatform.getCurrentOperatingSystem().isMacOsX
&& isSigning(properties) && isSigning(properties)
&& !File(rootDir, "src/main/resources/Tachidesk.jar").exists() && project.file(finalJar).exists()
} }
} }
} }