mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-14 15:53:30 -07:00
Simplify CI workflow
This commit is contained in:
parent
7b9a4e1aff
commit
aae43821e7
56
.github/workflows/main.yml
vendored
56
.github/workflows/main.yml
vendored
|
|
@ -25,6 +25,8 @@ jobs:
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
# Tests need access to secrets, so we can't run them against PRs because of limited trust
|
# Tests need access to secrets, so we can't run them against PRs because of limited trust
|
||||||
if: ${{ github.event_name != 'pull_request' }}
|
if: ${{ github.event_name != 'pull_request' }}
|
||||||
|
env:
|
||||||
|
DISCORD_TOKEN: ${{ secrets.DISCORD_TOKEN }}
|
||||||
run: >
|
run: >
|
||||||
dotnet test
|
dotnet test
|
||||||
--configuration Release
|
--configuration Release
|
||||||
|
|
@ -33,8 +35,6 @@ jobs:
|
||||||
--
|
--
|
||||||
RunConfiguration.CollectSourceInformation=true
|
RunConfiguration.CollectSourceInformation=true
|
||||||
DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=opencover
|
DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=opencover
|
||||||
env:
|
|
||||||
DISCORD_TOKEN: ${{ secrets.DISCORD_TOKEN }}
|
|
||||||
|
|
||||||
- name: Upload coverage
|
- name: Upload coverage
|
||||||
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # 3.1.4
|
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # 3.1.4
|
||||||
|
|
@ -42,6 +42,10 @@ jobs:
|
||||||
token: ${{ secrets.CODECOV_TOKEN }}
|
token: ${{ secrets.CODECOV_TOKEN }}
|
||||||
|
|
||||||
pack:
|
pack:
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
app: [DiscordChatExporter.Cli, DiscordChatExporter.Gui]
|
||||||
|
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
permissions:
|
permissions:
|
||||||
actions: write
|
actions: write
|
||||||
|
|
@ -56,35 +60,25 @@ jobs:
|
||||||
with:
|
with:
|
||||||
dotnet-version: 7.0.x
|
dotnet-version: 7.0.x
|
||||||
|
|
||||||
- name: Publish (CLI)
|
- name: Publish app
|
||||||
run: >
|
run: >
|
||||||
dotnet publish DiscordChatExporter.Cli
|
dotnet publish ${{ matrix.app }}
|
||||||
--output DiscordChatExporter.Cli/publish/
|
--output ${{ matrix.app }}/publish/
|
||||||
--configuration Release
|
--configuration Release
|
||||||
|
|
||||||
- name: Publish (GUI)
|
- name: Upload artifacts
|
||||||
run: >
|
|
||||||
dotnet publish DiscordChatExporter.Gui
|
|
||||||
--output DiscordChatExporter.Gui/publish/
|
|
||||||
--configuration Release
|
|
||||||
|
|
||||||
- name: Upload artifacts (CLI)
|
|
||||||
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # 3.1.3
|
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # 3.1.3
|
||||||
with:
|
with:
|
||||||
name: DiscordChatExporter.Cli
|
name: ${{ matrix.app }}
|
||||||
path: DiscordChatExporter.Cli/publish/
|
path: ${{ matrix.app }}/publish/
|
||||||
|
|
||||||
- name: Upload artifacts (GUI)
|
|
||||||
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # 3.1.3
|
|
||||||
with:
|
|
||||||
name: DiscordChatExporter
|
|
||||||
path: DiscordChatExporter.Gui/publish/
|
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }}
|
if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }}
|
||||||
|
|
||||||
needs:
|
needs:
|
||||||
- test
|
- test
|
||||||
- pack
|
- pack
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
actions: read
|
actions: read
|
||||||
|
|
@ -95,29 +89,19 @@ jobs:
|
||||||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # 3.0.2
|
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # 3.0.2
|
||||||
with:
|
with:
|
||||||
name: DiscordChatExporter.Cli
|
name: DiscordChatExporter.Cli
|
||||||
path: DiscordChatExporter.Cli
|
path: DiscordChatExporter.Cli/
|
||||||
|
|
||||||
- name: Download artifacts (GUI)
|
- name: Download artifacts (GUI)
|
||||||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # 3.0.2
|
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # 3.0.2
|
||||||
with:
|
with:
|
||||||
name: DiscordChatExporter
|
name: DiscordChatExporter.Gui
|
||||||
path: DiscordChatExporter.Gui
|
path: DiscordChatExporter.Gui/
|
||||||
|
|
||||||
- name: Create package (CLI)
|
- name: Create package (CLI)
|
||||||
shell: pwsh
|
run: zip -r DiscordChatExporter.Cli.zip DiscordChatExporter.Cli/
|
||||||
run: >
|
|
||||||
Compress-Archive
|
|
||||||
-Path DiscordChatExporter.Cli/*
|
|
||||||
-DestinationPath DiscordChatExporter.Cli.zip
|
|
||||||
-Force
|
|
||||||
|
|
||||||
- name: Create package (GUI)
|
- name: Create package (GUI)
|
||||||
shell: pwsh
|
run: zip -r DiscordChatExporter.Gui.zip DiscordChatExporter.Gui/
|
||||||
run: >
|
|
||||||
Compress-Archive
|
|
||||||
-Path DiscordChatExporter.Gui/*
|
|
||||||
-DestinationPath DiscordChatExporter.zip
|
|
||||||
-Force
|
|
||||||
|
|
||||||
- name: Create release
|
- name: Create release
|
||||||
env:
|
env:
|
||||||
|
|
@ -125,7 +109,7 @@ jobs:
|
||||||
run: >
|
run: >
|
||||||
gh release create "${{ github.ref_name }}"
|
gh release create "${{ github.ref_name }}"
|
||||||
"DiscordChatExporter.Cli.zip"
|
"DiscordChatExporter.Cli.zip"
|
||||||
"DiscordChatExporter.zip"
|
"DiscordChatExporter.Gui.zip#DiscordChatExporter.zip"
|
||||||
--repo "${{ github.event.repository.full_name }}"
|
--repo "${{ github.event.repository.full_name }}"
|
||||||
--title "${{ github.ref_name }}"
|
--title "${{ github.ref_name }}"
|
||||||
--notes "[Changelog](${{ github.event.repository.html_url }}/blob/${{ github.ref_name }}/Changelog.md)"
|
--notes "[Changelog](${{ github.event.repository.html_url }}/blob/${{ github.ref_name }}/Changelog.md)"
|
||||||
|
|
|
||||||
|
|
@ -58,7 +58,7 @@ The following table lists all available download options:
|
||||||
<td>
|
<td>
|
||||||
<ul>
|
<ul>
|
||||||
<li>🟢 <b><a href="https://github.com/Tyrrrz/DiscordChatExporter/releases/latest">Stable release</a></b> (<code>DiscordChatExporter.zip</code>)</li>
|
<li>🟢 <b><a href="https://github.com/Tyrrrz/DiscordChatExporter/releases/latest">Stable release</a></b> (<code>DiscordChatExporter.zip</code>)</li>
|
||||||
<li>🟠 <a href="https://github.com/Tyrrrz/DiscordChatExporter/actions/workflows/main.yml">CI build</a> (<code>DiscordChatExporter.zip</code>)</li>
|
<li>🟠 <a href="https://github.com/Tyrrrz/DiscordChatExporter/actions/workflows/main.yml">CI build</a> (<code>DiscordChatExporter.Gui.zip</code>)</li>
|
||||||
</ul>
|
</ul>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
|
|
@ -71,8 +71,8 @@ The following table lists all available download options:
|
||||||
<td><b>CLI</b></td>
|
<td><b>CLI</b></td>
|
||||||
<td>
|
<td>
|
||||||
<ul>
|
<ul>
|
||||||
<li>🟢 <b><a href="https://github.com/Tyrrrz/DiscordChatExporter/releases/latest">Stable release</a></b> (<code>DiscordChatExporter.CLI.zip</code></li>
|
<li>🟢 <b><a href="https://github.com/Tyrrrz/DiscordChatExporter/releases/latest">Stable release</a></b> (<code>DiscordChatExporter.Cli.zip</code></li>
|
||||||
<li>🟠 <a href="https://github.com/Tyrrrz/DiscordChatExporter/actions/workflows/main.yml">CI build</a> (<code>DiscordChatExporter.CLI.zip</code>)</li>
|
<li>🟠 <a href="https://github.com/Tyrrrz/DiscordChatExporter/actions/workflows/main.yml">CI build</a> (<code>DiscordChatExporter.Cli.zip</code>)</li>
|
||||||
<li>🐋 <a href="https://hub.docker.com/r/tyrrrz/discordchatexporter">Docker</a> (<code>tyrrrz/discordchatexporter</code>)</li>
|
<li>🐋 <a href="https://hub.docker.com/r/tyrrrz/discordchatexporter">Docker</a> (<code>tyrrrz/discordchatexporter</code>)</li>
|
||||||
<li>📦 <a href="https://aur.archlinux.org/packages/discord-chat-exporter-cli">AUR</a> (<code>discord-chat-exporter-cli</code>)</li>
|
<li>📦 <a href="https://aur.archlinux.org/packages/discord-chat-exporter-cli">AUR</a> (<code>discord-chat-exporter-cli</code>)</li>
|
||||||
<li>📦 <a href="https://search.nixos.org/packages?query=discordchatexporter-cli">Nix</a> (<code>discordchatexporter-cli</code>)</li>
|
<li>📦 <a href="https://search.nixos.org/packages?query=discordchatexporter-cli">Nix</a> (<code>discordchatexporter-cli</code>)</li>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue