Skip to content

Commit

Permalink
Add Cmd publish profiles;
Browse files Browse the repository at this point in the history
Fix cmd update repo;
  • Loading branch information
onepiecefreak3 committed Jun 27, 2021
1 parent ab87e26 commit fd0a38a
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 6 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/cmd_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,12 +146,6 @@ jobs:
- name: Clone update repository
run: git clone https://github.com/FanTranslatorsInternational/Kuriimu2-CommandLine-Update ./update_repo

- name: Commit changes to update repo
run: |
ls ./update/Windows
ls ./update/Linux
ls ./update/Mac
- name: Move update files to update repo
run: |
mv -Force ./update/Windows/* ./update_repo/Windows
Expand Down
16 changes: 16 additions & 0 deletions src/Kuriimu2.Cmd/Properties/PublishProfiles/Linux.pubxml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration>Release</Configuration>
<Platform>Any CPU</Platform>
<PublishDir>..\..\dist\Release\netcoreapp31\win-x64\publish\</PublishDir>
<PublishProtocol>FileSystem</PublishProtocol>
<TargetFramework>netcoreapp31</TargetFramework>
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
<SelfContained>false</SelfContained>
<PublishSingleFile>True</PublishSingleFile>
</PropertyGroup>
</Project>
16 changes: 16 additions & 0 deletions src/Kuriimu2.Cmd/Properties/PublishProfiles/Mac.pubxml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration>Release</Configuration>
<Platform>Any CPU</Platform>
<PublishDir>..\..\dist\Release\netcoreapp31\win-x64\publish\</PublishDir>
<PublishProtocol>FileSystem</PublishProtocol>
<TargetFramework>netcoreapp31</TargetFramework>
<RuntimeIdentifier>osx-x64</RuntimeIdentifier>
<SelfContained>false</SelfContained>
<PublishSingleFile>True</PublishSingleFile>
</PropertyGroup>
</Project>

0 comments on commit fd0a38a

Please sign in to comment.