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.
154 lines
4.8 KiB
154 lines
4.8 KiB
3 years ago
|
name: main
|
||
|
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
runs-on: windows-latest
|
||
|
|
||
|
env:
|
||
|
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
|
||
|
DOTNET_NOLOGO: true
|
||
|
DOTNET_CLI_TELEMETRY_OPTOUT: true
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v3
|
||
|
|
||
|
- name: Install .NET
|
||
|
uses: actions/setup-dotnet@v2
|
||
|
with:
|
||
|
# Fixed version, workaround for https://github.com/dotnet/core/issues/7176
|
||
|
dotnet-version: 6.0.100
|
||
|
|
||
|
- name: Run tests
|
||
|
# Tests need access to secrets, so we can't run them against PRs because of limited trust
|
||
|
if: ${{ github.event_name != 'pull_request' }}
|
||
|
run: dotnet test --configuration Release --logger GitHubActions --collect:"XPlat Code Coverage" -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=opencover
|
||
|
env:
|
||
|
DISCORD_TOKEN: ${{ secrets.DISCORD_TOKEN }}
|
||
|
DISCORD_TOKEN_BOT: true
|
||
|
|
||
|
- name: Upload coverage
|
||
|
uses: codecov/codecov-action@v3
|
||
|
with:
|
||
|
token: ${{ secrets.CODECOV_TOKEN }}
|
||
|
|
||
|
publish:
|
||
|
needs: test
|
||
|
runs-on: windows-latest
|
||
|
|
||
|
env:
|
||
|
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
|
||
|
DOTNET_NOLOGO: true
|
||
|
DOTNET_CLI_TELEMETRY_OPTOUT: true
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v3
|
||
|
|
||
|
- name: Install .NET
|
||
|
uses: actions/setup-dotnet@v2
|
||
|
with:
|
||
|
# Fixed version, workaround for https://github.com/dotnet/core/issues/7176
|
||
|
dotnet-version: 6.0.100
|
||
|
|
||
|
- name: Publish (CLI)
|
||
|
run: dotnet publish DiscordChatExporter.Cli/ -o DiscordChatExporter.Cli/bin/Publish/ --configuration Release
|
||
|
|
||
|
- name: Publish (GUI)
|
||
|
run: dotnet publish DiscordChatExporter.Gui/ -o DiscordChatExporter.Gui/bin/Publish/ --configuration Release
|
||
|
|
||
|
- name: Upload artifact (CLI)
|
||
|
uses: actions/upload-artifact@v3
|
||
|
with:
|
||
|
name: DiscordChatExporter.CLI
|
||
|
path: DiscordChatExporter.Cli/bin/Publish/
|
||
|
|
||
|
- name: Upload artifact (GUI)
|
||
|
uses: actions/upload-artifact@v3
|
||
|
with:
|
||
|
name: DiscordChatExporter
|
||
|
path: DiscordChatExporter.Gui/bin/Publish/
|
||
|
|
||
|
deploy:
|
||
|
if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }}
|
||
|
needs: publish
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- name: Download artifact (CLI)
|
||
|
uses: actions/download-artifact@v3
|
||
|
with:
|
||
|
name: DiscordChatExporter.CLI
|
||
|
path: DiscordChatExporter.CLI
|
||
|
|
||
|
- name: Download artifact (GUI)
|
||
|
uses: actions/download-artifact@v3
|
||
|
with:
|
||
|
name: DiscordChatExporter
|
||
|
path: DiscordChatExporter.GUI
|
||
|
|
||
|
- name: Create package (CLI)
|
||
|
run: Compress-Archive -Path DiscordChatExporter.CLI/* -DestinationPath DiscordChatExporter.CLI.zip -Force
|
||
|
shell: pwsh
|
||
|
|
||
|
- name: Create package (GUI)
|
||
|
run: Compress-Archive -Path DiscordChatExporter.GUI/* -DestinationPath DiscordChatExporter.GUI.zip -Force
|
||
|
shell: pwsh
|
||
|
|
||
|
- name: Create release
|
||
|
id: create_release
|
||
|
uses: actions/create-release@v1
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||
|
with:
|
||
|
tag_name: ${{ github.ref }}
|
||
|
release_name: ${{ github.ref }}
|
||
|
body: |
|
||
|
[Changelog](https://github.com/Tyrrrz/DiscordChatExporter/blob/master/Changelog.md)
|
||
|
draft: false
|
||
|
prerelease: false
|
||
|
|
||
|
- name: Upload release asset (CLI)
|
||
|
uses: actions/upload-release-asset@v1
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||
|
with:
|
||
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||
|
asset_name: DiscordChatExporter.CLI.zip
|
||
|
asset_path: DiscordChatExporter.CLI.zip
|
||
|
asset_content_type: application/zip
|
||
|
|
||
|
- name: Upload release asset (GUI)
|
||
|
uses: actions/upload-release-asset@v1
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||
|
with:
|
||
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||
|
asset_name: DiscordChatExporter.zip
|
||
|
asset_path: DiscordChatExporter.GUI.zip
|
||
|
asset_content_type: application/zip
|
||
|
|
||
|
notify:
|
||
|
needs: deploy
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- name: Get release version
|
||
|
id: get_version
|
||
|
uses: dawidd6/action-get-tag@v1
|
||
|
|
||
|
- name: Notify Discord
|
||
|
uses: satak/webrequest-action@v1.2.4
|
||
|
with:
|
||
|
url: ${{ secrets.DISCORD_WEBHOOK }}
|
||
|
method: POST
|
||
|
headers: |
|
||
|
{
|
||
|
"ContentType": "application/json; charset=UTF-8"
|
||
|
}
|
||
|
payload: |
|
||
|
{
|
||
|
"content": "**DiscordChatExporter** new version released!\nVersion: `${{ steps.get_version.outputs.tag }}`\nChangelog: <https://github.com/Tyrrrz/DiscordChatExporter/blob/${{ steps.get_version.outputs.tag }}/Changelog.md>"
|
||
|
}
|