Skip to content

Commit

Permalink
Fixing build
Browse files Browse the repository at this point in the history
  • Loading branch information
buldo committed Dec 7, 2023
1 parent 63503b2 commit de95eb5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Cache .nuke/temp, ~/.nuget/packages
- name: 'Cache: .nuke/temp, ~/.nuget/packages'
uses: actions/cache@v3
with:
path: |
.nuke/temp
~/.nuget/packages
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj') }}
- name: Run './build.cmd Clean CloudsmithPublish'
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj', '**/Directory.Packages.props') }}
- name: 'Run: Clean, CloudsmithPublish'
run: ./build.cmd Clean CloudsmithPublish
env:
CLOUDSMITH_API_KEY: ${{ secrets.CLOUDSMITH_API_KEY }}
12 changes: 4 additions & 8 deletions .nuke/build.schema.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Build Schema",
"$ref": "#/definitions/build",
"title": "Build Schema",
"definitions": {
"build": {
"type": "object",
Expand Down Expand Up @@ -83,11 +83,9 @@
"Clean",
"CloudsmithPublish",
"DebPack",
"DownloadFfmpeg",
"PrepareForDebPack",
"Publish",
"Restore",
"UncompressFfmpeg"
"Restore"
]
}
},
Expand All @@ -104,11 +102,9 @@
"Clean",
"CloudsmithPublish",
"DebPack",
"DownloadFfmpeg",
"PrepareForDebPack",
"Publish",
"Restore",
"UncompressFfmpeg"
"Restore"
]
}
},
Expand All @@ -125,4 +121,4 @@
}
}
}
}
}
1 change: 1 addition & 0 deletions build/_build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<NukeRootDirectory>..</NukeRootDirectory>
<NukeScriptDirectory>..</NukeScriptDirectory>
<NukeTelemetryVersion>1</NukeTelemetryVersion>
<EnableUnsafeBinaryFormatterSerialization>true</EnableUnsafeBinaryFormatterSerialization>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit de95eb5

Please sign in to comment.