From ab87e2603a94fe98d2e8382661550aa5b3ad9887 Mon Sep 17 00:00:00 2001 From: onepiecefreak3 Date: Mon, 28 Jun 2021 00:10:44 +0200 Subject: [PATCH 1/2] Add list command for cmd_dev.yml; --- .github/workflows/cmd_dev.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmd_dev.yml b/.github/workflows/cmd_dev.yml index e7348573..c87fa6af 100644 --- a/.github/workflows/cmd_dev.yml +++ b/.github/workflows/cmd_dev.yml @@ -145,13 +145,19 @@ 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 mv -Force ./update/Linux/* ./update_repo/Linux mv -Force ./update/Mac/* ./update_repo/Mac - + - name: Commit changes to update repo run: | cd ./update_repo From fd0a38af0cc674425987a2d76872878594f78cfe Mon Sep 17 00:00:00 2001 From: onepiecefreak3 Date: Mon, 28 Jun 2021 00:37:52 +0200 Subject: [PATCH 2/2] Add Cmd publish profiles; Fix cmd update repo; --- .github/workflows/cmd_dev.yml | 6 ------ .../Properties/PublishProfiles/Linux.pubxml | 16 ++++++++++++++++ .../Properties/PublishProfiles/Mac.pubxml | 16 ++++++++++++++++ .../{FolderProfile.pubxml => Windows.pubxml} | 0 4 files changed, 32 insertions(+), 6 deletions(-) create mode 100644 src/Kuriimu2.Cmd/Properties/PublishProfiles/Linux.pubxml create mode 100644 src/Kuriimu2.Cmd/Properties/PublishProfiles/Mac.pubxml rename src/Kuriimu2.Cmd/Properties/PublishProfiles/{FolderProfile.pubxml => Windows.pubxml} (100%) diff --git a/.github/workflows/cmd_dev.yml b/.github/workflows/cmd_dev.yml index c87fa6af..12bdf44e 100644 --- a/.github/workflows/cmd_dev.yml +++ b/.github/workflows/cmd_dev.yml @@ -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 diff --git a/src/Kuriimu2.Cmd/Properties/PublishProfiles/Linux.pubxml b/src/Kuriimu2.Cmd/Properties/PublishProfiles/Linux.pubxml new file mode 100644 index 00000000..809244eb --- /dev/null +++ b/src/Kuriimu2.Cmd/Properties/PublishProfiles/Linux.pubxml @@ -0,0 +1,16 @@ + + + + + Release + Any CPU + ..\..\dist\Release\netcoreapp31\win-x64\publish\ + FileSystem + netcoreapp31 + linux-x64 + false + True + + \ No newline at end of file diff --git a/src/Kuriimu2.Cmd/Properties/PublishProfiles/Mac.pubxml b/src/Kuriimu2.Cmd/Properties/PublishProfiles/Mac.pubxml new file mode 100644 index 00000000..840f43f6 --- /dev/null +++ b/src/Kuriimu2.Cmd/Properties/PublishProfiles/Mac.pubxml @@ -0,0 +1,16 @@ + + + + + Release + Any CPU + ..\..\dist\Release\netcoreapp31\win-x64\publish\ + FileSystem + netcoreapp31 + osx-x64 + false + True + + \ No newline at end of file diff --git a/src/Kuriimu2.Cmd/Properties/PublishProfiles/FolderProfile.pubxml b/src/Kuriimu2.Cmd/Properties/PublishProfiles/Windows.pubxml similarity index 100% rename from src/Kuriimu2.Cmd/Properties/PublishProfiles/FolderProfile.pubxml rename to src/Kuriimu2.Cmd/Properties/PublishProfiles/Windows.pubxml