Update YoutubeExplode to v6.4.3 #396
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
- name: Install .NET | |
uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4.0.1 | |
with: | |
dotnet-version: 8.0.x | |
- name: Verify formatting | |
run: > | |
dotnet build | |
-t:CSharpierFormat | |
--configuration Release | |
pack: | |
strategy: | |
matrix: | |
rid: | |
- win-arm64 | |
- win-x86 | |
- win-x64 | |
- linux-arm64 | |
- linux-x64 | |
- osx-arm64 | |
- osx-x64 | |
bundle-ffmpeg: | |
- true | |
- false | |
include: | |
- bundle-ffmpeg: true | |
artifact-name-base: YoutubeDownloader | |
- bundle-ffmpeg: false | |
artifact-name-base: YoutubeDownloader.Bare | |
exclude: | |
# FFmpeg builds for these platforms are not easily available | |
- bundle-ffmpeg: true | |
rid: linux-arm64 | |
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@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
- name: Install .NET | |
uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4.0.1 | |
with: | |
dotnet-version: 8.0.x | |
- name: Download FFmpeg | |
if: ${{ matrix.bundle-ffmpeg }} | |
shell: pwsh | |
run: YoutubeDownloader/DownloadFFmpeg.ps1 -platform ${{ matrix.rid }} | |
- name: Publish app | |
run: > | |
dotnet publish YoutubeDownloader | |
-p:Version=${{ github.ref_type == 'tag' && github.ref_name || format('999.9.9-ci-{0}', github.sha) }} | |
-p:CSharpier_Bypass=true | |
--output YoutubeDownloader/bin/publish | |
--configuration Release | |
--runtime ${{ matrix.rid }} | |
--self-contained | |
- name: Upload artifacts | |
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 | |
with: | |
name: ${{ matrix.artifact-name-base }}.${{ matrix.rid }} | |
path: YoutubeDownloader/bin/publish | |
if-no-files-found: error | |
release: | |
if: ${{ github.ref_type == 'tag' }} | |
needs: | |
- format | |
- 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: | |
rid: | |
- win-arm64 | |
- win-x86 | |
- win-x64 | |
- linux-arm64 | |
- linux-x64 | |
- osx-arm64 | |
- osx-x64 | |
bundle-ffmpeg: | |
- true | |
- false | |
include: | |
- bundle-ffmpeg: true | |
artifact-name-base: YoutubeDownloader | |
- bundle-ffmpeg: false | |
artifact-name-base: YoutubeDownloader.Bare | |
exclude: | |
# FFmpeg builds for these platforms are not easily available | |
- bundle-ffmpeg: true | |
rid: linux-arm64 | |
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.artifact-name-base }}.${{ matrix.rid }} | |
path: YoutubeDownloader/ | |
- name: Set permissions (app) | |
if: ${{ !startsWith(matrix.rid, 'win-') }} | |
run: chmod +x YoutubeDownloader/YoutubeDownloader | |
- name: Set permissions (FFmpeg) | |
if: ${{ !startsWith(matrix.rid, 'win-') && matrix.bundle-ffmpeg }} | |
run: chmod +x YoutubeDownloader/ffmpeg | |
- name: Create package | |
# Change into the artifacts directory to avoid including the directory itself in the zip archive | |
working-directory: YoutubeDownloader/ | |
run: zip -r ../${{ matrix.artifact-name-base }}.${{ matrix.rid }}.zip . | |
- name: Upload release asset | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: > | |
gh release upload ${{ github.ref_name }} | |
${{ matrix.artifact-name-base }}.${{ 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 |