Skip to content

Commit

Permalink
Update to .NET 9.0 in YAML workflows
Browse files Browse the repository at this point in the history
This commit updates the paths for the `AssetRipper.Tpk.ConsoleApp` executable in `engine_assets_tpk.yml` and `type_tree_tpk.yml`. References to the .NET 6.0 version have been replaced with the .NET 9.0 version. The changes include making the new executable executable and running it with the appropriate arguments for generating TPK files from engine assets and type tree dumps, ensuring the latest version is utilized in the workflows.
  • Loading branch information
ds5678 committed Mar 2, 2025
1 parent 8c6d9c4 commit 7eef5f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/engine_assets_tpk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ jobs:
path: DocumentationDumps
- name: Make files executable
shell: bash
run: chmod +x ./Tpk.ConsoleApp/bin/Release/net6.0/AssetRipper.Tpk.ConsoleApp
run: chmod +x ./Tpk.ConsoleApp/bin/Release/net9.0/AssetRipper.Tpk.ConsoleApp
- name: Make tpk file
shell: bash
run: ./Tpk.ConsoleApp/bin/Release/net6.0/AssetRipper.Tpk.ConsoleApp --engine-assets ./DocumentationDumps/EngineAssets
run: ./Tpk.ConsoleApp/bin/Release/net9.0/AssetRipper.Tpk.ConsoleApp --engine-assets ./DocumentationDumps/EngineAssets
- name: Upload Uncompressed file
uses: actions/upload-artifact@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/type_tree_tpk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ jobs:
path: TypeTreeDumps
- name: Make files executable
shell: bash
run: chmod +x ./Tpk.ConsoleApp/bin/Release/net6.0/AssetRipper.Tpk.ConsoleApp
run: chmod +x ./Tpk.ConsoleApp/bin/Release/net9.0/AssetRipper.Tpk.ConsoleApp
- name: Make tpk file
shell: bash
run: ./Tpk.ConsoleApp/bin/Release/net6.0/AssetRipper.Tpk.ConsoleApp --type-tree ./TypeTreeDumps/InfoJson
run: ./Tpk.ConsoleApp/bin/Release/net9.0/AssetRipper.Tpk.ConsoleApp --type-tree ./TypeTreeDumps/InfoJson
- name: Upload Uncompressed file
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 7eef5f0

Please sign in to comment.