You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
918 B
35 lines
918 B
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install .NET Core
|
|
uses: actions/setup-dotnet@v1.4.0
|
|
with:
|
|
dotnet-version: 3.1.100
|
|
|
|
- name: Build & publish (CLI)
|
|
run: dotnet publish DiscordChatExporter.Cli/ -o DiscordChatExporter.Cli/bin/Publish/ --configuration Release
|
|
|
|
- name: Build & publish (GUI)
|
|
run: dotnet publish DiscordChatExporter.Gui/ -o DiscordChatExporter.Gui/bin/Publish/ --configuration Release
|
|
|
|
- name: Upload build artifacts (CLI)
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: DiscordChatExporter.CLI
|
|
path: DiscordChatExporter.Cli/bin/Publish/
|
|
|
|
- name: Upload build artifact (GUI)
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: DiscordChatExporter
|
|
path: DiscordChatExporter.Gui/bin/Publish/
|