|
|
@ -59,26 +59,26 @@ jobs:
|
|
|
|
- name: Publish (CLI)
|
|
|
|
- name: Publish (CLI)
|
|
|
|
run: >
|
|
|
|
run: >
|
|
|
|
dotnet publish DiscordChatExporter.Cli
|
|
|
|
dotnet publish DiscordChatExporter.Cli
|
|
|
|
--output DiscordChatExporter.Cli/bin/Publish/
|
|
|
|
--output DiscordChatExporter.Cli/publish/
|
|
|
|
--configuration Release
|
|
|
|
--configuration Release
|
|
|
|
|
|
|
|
|
|
|
|
- name: Publish (GUI)
|
|
|
|
- name: Publish (GUI)
|
|
|
|
run: >
|
|
|
|
run: >
|
|
|
|
dotnet publish DiscordChatExporter.Gui
|
|
|
|
dotnet publish DiscordChatExporter.Gui
|
|
|
|
--output DiscordChatExporter.Gui/bin/Publish/
|
|
|
|
--output DiscordChatExporter.Gui/publish/
|
|
|
|
--configuration Release
|
|
|
|
--configuration Release
|
|
|
|
|
|
|
|
|
|
|
|
- name: Upload artifacts (CLI)
|
|
|
|
- name: Upload artifacts (CLI)
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
name: DiscordChatExporter.Cli
|
|
|
|
name: DiscordChatExporter.Cli
|
|
|
|
path: DiscordChatExporter.Cli/bin/Publish/
|
|
|
|
path: DiscordChatExporter.Cli/publish/
|
|
|
|
|
|
|
|
|
|
|
|
- name: Upload artifacts (GUI)
|
|
|
|
- name: Upload artifacts (GUI)
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
name: DiscordChatExporter
|
|
|
|
name: DiscordChatExporter
|
|
|
|
path: DiscordChatExporter.Gui/bin/Publish/
|
|
|
|
path: DiscordChatExporter.Gui/publish/
|
|
|
|
|
|
|
|
|
|
|
|
deploy:
|
|
|
|
deploy:
|
|
|
|
if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }}
|
|
|
|
if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }}
|
|
|
|