mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-05-09 11:51:59 -04:00

Some checks failed
docker / pack (push) Has been cancelled
docker / deploy (push) Has been cancelled
main / format (push) Has been cancelled
main / test (push) Has been cancelled
main / pack (DiscordChatExporter.Cli, DiscordChatExporter.Cli, linux-arm) (push) Has been cancelled
main / pack (DiscordChatExporter.Cli, DiscordChatExporter.Cli, linux-arm64) (push) Has been cancelled
main / pack (DiscordChatExporter.Cli, DiscordChatExporter.Cli, linux-musl-x64) (push) Has been cancelled
main / pack (DiscordChatExporter.Cli, DiscordChatExporter.Cli, linux-x64) (push) Has been cancelled
main / pack (DiscordChatExporter.Cli, DiscordChatExporter.Cli, osx-arm64) (push) Has been cancelled
main / pack (DiscordChatExporter.Cli, DiscordChatExporter.Cli, osx-x64) (push) Has been cancelled
main / pack (DiscordChatExporter.Cli, DiscordChatExporter.Cli, win-arm64) (push) Has been cancelled
main / pack (DiscordChatExporter.Cli, DiscordChatExporter.Cli, win-x64) (push) Has been cancelled
main / pack (DiscordChatExporter.Cli, DiscordChatExporter.Cli, win-x86) (push) Has been cancelled
main / pack (DiscordChatExporter.Gui, DiscordChatExporter, linux-arm) (push) Has been cancelled
main / pack (DiscordChatExporter.Gui, DiscordChatExporter, linux-arm64) (push) Has been cancelled
main / pack (DiscordChatExporter.Gui, DiscordChatExporter, linux-musl-x64) (push) Has been cancelled
main / pack (DiscordChatExporter.Gui, DiscordChatExporter, linux-x64) (push) Has been cancelled
main / pack (DiscordChatExporter.Gui, DiscordChatExporter, osx-arm64) (push) Has been cancelled
main / pack (DiscordChatExporter.Gui, DiscordChatExporter, osx-x64) (push) Has been cancelled
main / pack (DiscordChatExporter.Gui, DiscordChatExporter, win-arm64) (push) Has been cancelled
main / pack (DiscordChatExporter.Gui, DiscordChatExporter, win-x64) (push) Has been cancelled
main / pack (DiscordChatExporter.Gui, DiscordChatExporter, win-x86) (push) Has been cancelled
main / release (push) Has been cancelled
main / deploy (DiscordChatExporter.Cli, DiscordChatExporter.Cli, linux-arm) (push) Has been cancelled
main / deploy (DiscordChatExporter.Cli, DiscordChatExporter.Cli, linux-arm64) (push) Has been cancelled
main / deploy (DiscordChatExporter.Cli, DiscordChatExporter.Cli, linux-musl-x64) (push) Has been cancelled
main / deploy (DiscordChatExporter.Cli, DiscordChatExporter.Cli, linux-x64) (push) Has been cancelled
main / deploy (DiscordChatExporter.Cli, DiscordChatExporter.Cli, osx-arm64) (push) Has been cancelled
main / deploy (DiscordChatExporter.Cli, DiscordChatExporter.Cli, osx-x64) (push) Has been cancelled
main / deploy (DiscordChatExporter.Cli, DiscordChatExporter.Cli, win-arm64) (push) Has been cancelled
main / deploy (DiscordChatExporter.Cli, DiscordChatExporter.Cli, win-x64) (push) Has been cancelled
main / deploy (DiscordChatExporter.Cli, DiscordChatExporter.Cli, win-x86) (push) Has been cancelled
main / deploy (DiscordChatExporter.Gui, DiscordChatExporter, linux-arm) (push) Has been cancelled
main / deploy (DiscordChatExporter.Gui, DiscordChatExporter, linux-arm64) (push) Has been cancelled
main / deploy (DiscordChatExporter.Gui, DiscordChatExporter, linux-musl-x64) (push) Has been cancelled
main / deploy (DiscordChatExporter.Gui, DiscordChatExporter, linux-x64) (push) Has been cancelled
main / deploy (DiscordChatExporter.Gui, DiscordChatExporter, osx-arm64) (push) Has been cancelled
main / deploy (DiscordChatExporter.Gui, DiscordChatExporter, osx-x64) (push) Has been cancelled
main / deploy (DiscordChatExporter.Gui, DiscordChatExporter, win-arm64) (push) Has been cancelled
main / deploy (DiscordChatExporter.Gui, DiscordChatExporter, win-x64) (push) Has been cancelled
main / deploy (DiscordChatExporter.Gui, DiscordChatExporter, win-x86) (push) Has been cancelled
main / notify (push) Has been cancelled
237 lines
6.5 KiB
YAML
237 lines
6.5 KiB
YAML
name: main
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- master
|
|
tags:
|
|
- "*"
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
env:
|
|
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
|
|
DOTNET_NOLOGO: true
|
|
DOTNET_CLI_TELEMETRY_OPTOUT: true
|
|
|
|
jobs:
|
|
format:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
|
|
- name: Install .NET
|
|
uses: actions/setup-dotnet@3e891b0cb619bf60e2c25674b222b8940e2c1c25 # v4.1.0
|
|
with:
|
|
dotnet-version: 9.0.x
|
|
|
|
- name: Verify formatting
|
|
run: >
|
|
dotnet build
|
|
-t:CSharpierFormat
|
|
--configuration Release
|
|
|
|
test:
|
|
# Tests need access to secrets, so we can't run them against PRs because of limited trust
|
|
if: ${{ github.event_name != 'pull_request' }}
|
|
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
|
|
- name: Install .NET
|
|
uses: actions/setup-dotnet@3e891b0cb619bf60e2c25674b222b8940e2c1c25 # v4.1.0
|
|
with:
|
|
dotnet-version: 9.0.x
|
|
|
|
- name: Run tests
|
|
env:
|
|
DISCORD_TOKEN: ${{ secrets.DISCORD_TOKEN }}
|
|
run: >
|
|
dotnet test
|
|
-p:CSharpier_Bypass=true
|
|
--configuration Release
|
|
--logger "GitHubActions;summary.includePassedTests=true;summary.includeSkippedTests=true"
|
|
--collect:"XPlat Code Coverage"
|
|
--
|
|
RunConfiguration.CollectSourceInformation=true
|
|
DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=opencover
|
|
|
|
- name: Upload coverage
|
|
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4.6.0
|
|
with:
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
|
|
pack:
|
|
strategy:
|
|
matrix:
|
|
app:
|
|
- DiscordChatExporter.Cli
|
|
- DiscordChatExporter.Gui
|
|
rid:
|
|
- win-arm64
|
|
- win-x86
|
|
- win-x64
|
|
- linux-arm
|
|
- linux-arm64
|
|
- linux-musl-x64
|
|
- linux-x64
|
|
- osx-arm64
|
|
- osx-x64
|
|
include:
|
|
- app: DiscordChatExporter.Cli
|
|
asset: DiscordChatExporter.Cli
|
|
- app: DiscordChatExporter.Gui
|
|
# GUI assets aren't suffixed, unlike the CLI assets
|
|
asset: DiscordChatExporter
|
|
|
|
runs-on: ${{ startsWith(matrix.rid, 'win-') && 'windows-latest' || startsWith(matrix.rid, 'osx-') && 'macos-latest' || 'ubuntu-latest' }}
|
|
timeout-minutes: 10
|
|
|
|
permissions:
|
|
actions: write
|
|
contents: read
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
|
|
- name: Install .NET
|
|
uses: actions/setup-dotnet@3e891b0cb619bf60e2c25674b222b8940e2c1c25 # v4.1.0
|
|
with:
|
|
dotnet-version: 9.0.x
|
|
|
|
- name: Publish app
|
|
run: >
|
|
dotnet publish ${{ matrix.app }}
|
|
-p:Version=${{ github.ref_type == 'tag' && github.ref_name || format('999.9.9-ci-{0}', github.sha) }}
|
|
-p:CSharpier_Bypass=true
|
|
--output ${{ matrix.app }}/bin/publish/
|
|
--configuration Release
|
|
--runtime ${{ matrix.rid }}
|
|
--self-contained
|
|
|
|
- name: Upload artifacts
|
|
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
|
|
with:
|
|
name: ${{ matrix.asset }}.${{ matrix.rid }}
|
|
path: ${{ matrix.app }}/bin/publish/
|
|
if-no-files-found: error
|
|
|
|
release:
|
|
if: ${{ github.ref_type == 'tag' }}
|
|
|
|
needs:
|
|
- format
|
|
- test
|
|
- pack
|
|
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
steps:
|
|
- name: Create release
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: >
|
|
gh release create ${{ github.ref_name }}
|
|
--repo ${{ github.event.repository.full_name }}
|
|
--title ${{ github.ref_name }}
|
|
--generate-notes
|
|
--verify-tag
|
|
|
|
deploy:
|
|
needs: release
|
|
|
|
strategy:
|
|
matrix:
|
|
app:
|
|
- DiscordChatExporter.Cli
|
|
- DiscordChatExporter.Gui
|
|
rid:
|
|
- win-arm64
|
|
- win-x86
|
|
- win-x64
|
|
- linux-arm
|
|
- linux-arm64
|
|
- linux-musl-x64
|
|
- linux-x64
|
|
- osx-arm64
|
|
- osx-x64
|
|
include:
|
|
- app: DiscordChatExporter.Cli
|
|
asset: DiscordChatExporter.Cli
|
|
- app: DiscordChatExporter.Gui
|
|
# GUI assets aren't suffixed, unlike the CLI assets
|
|
asset: DiscordChatExporter
|
|
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
|
|
permissions:
|
|
actions: read
|
|
contents: write
|
|
|
|
steps:
|
|
- name: Download artifacts
|
|
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
|
|
with:
|
|
name: ${{ matrix.asset }}.${{ matrix.rid }}
|
|
path: ${{ matrix.app }}/
|
|
|
|
- name: Set permissions
|
|
if: ${{ !startsWith(matrix.rid, 'win-') }}
|
|
run: chmod +x ${{ matrix.app }}/${{ matrix.asset }}
|
|
|
|
- name: Create package
|
|
# Change into the artifacts directory to avoid including the directory itself in the zip archive
|
|
working-directory: ${{ matrix.app }}/
|
|
run: zip -r ../${{ matrix.asset }}.${{ matrix.rid }}.zip .
|
|
|
|
- name: Upload release asset
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: >
|
|
gh release upload ${{ github.ref_name }}
|
|
${{ matrix.asset }}.${{ matrix.rid }}.zip
|
|
--repo ${{ github.event.repository.full_name }}
|
|
|
|
notify:
|
|
needs: deploy
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
steps:
|
|
- name: Notify Discord
|
|
uses: tyrrrz/action-http-request@1dd7ad841a34b9299f3741f7c7399f9feefdfb08 # 1.1.3
|
|
with:
|
|
url: ${{ secrets.DISCORD_WEBHOOK }}
|
|
method: POST
|
|
headers: |
|
|
Content-Type: application/json; charset=UTF-8
|
|
body: |
|
|
{
|
|
"avatar_url": "https://raw.githubusercontent.com/${{ github.event.repository.full_name }}/${{ github.ref_name }}/favicon.png",
|
|
"content": "[**${{ github.event.repository.name }}**](<${{ github.event.repository.html_url }}>) v${{ github.ref_name }} has been released!"
|
|
}
|
|
retry-count: 5
|