Compare commits
1 Commits
356da24feb
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 960114c142 |
@@ -44,7 +44,11 @@ jobs:
|
|||||||
unzip -oq dalamud.zip -d "$hooks"
|
unzip -oq dalamud.zip -d "$hooks"
|
||||||
|
|
||||||
- name: Restore
|
- name: Restore
|
||||||
run: dotnet restore Craftimizer/Craftimizer.csproj
|
run: dotnet restore Craftimizer/Craftimizer.csproj -p:Platform=x64
|
||||||
|
|
||||||
- name: Build (Release)
|
- name: Build (Release)
|
||||||
run: dotnet build Craftimizer/Craftimizer.csproj --configuration Release --no-restore
|
# -p:Platform=x64 is required: csproj declares <Platforms>x64</Platforms>
|
||||||
|
# and <RuntimeIdentifier>win-x64</RuntimeIdentifier>, but project-level
|
||||||
|
# dotnet build defaults to AnyCPU and emits to bin/Release/ instead of
|
||||||
|
# bin/x64/Release/. The release workflow's find step expects the latter.
|
||||||
|
run: dotnet build Craftimizer/Craftimizer.csproj --configuration Release --no-restore -p:Platform=x64
|
||||||
|
|||||||
@@ -58,7 +58,11 @@ jobs:
|
|||||||
unzip -oq dalamud.zip -d "$hooks"
|
unzip -oq dalamud.zip -d "$hooks"
|
||||||
|
|
||||||
- name: Build (Release)
|
- name: Build (Release)
|
||||||
run: dotnet build Craftimizer/Craftimizer.csproj --configuration Release
|
# -p:Platform=x64 is required: csproj declares <Platforms>x64</Platforms>
|
||||||
|
# and <RuntimeIdentifier>win-x64</RuntimeIdentifier>, but project-level
|
||||||
|
# dotnet build defaults to AnyCPU and emits to bin/Release/ instead of
|
||||||
|
# bin/x64/Release/. The Locate latest.zip step below expects the latter.
|
||||||
|
run: dotnet build Craftimizer/Craftimizer.csproj --configuration Release -p:Platform=x64
|
||||||
|
|
||||||
- name: Locate latest.zip
|
- name: Locate latest.zip
|
||||||
id: locate
|
id: locate
|
||||||
|
|||||||
Reference in New Issue
Block a user