From 0a96509b71f3b8cc662d58840008b94284649fe1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=88=9A=28noham=29=C2=B2?=
<100566912+NohamR@users.noreply.github.com>
Date: Sat, 1 Feb 2025 23:51:39 +0100
Subject: [PATCH] Create build_latest.yml
---
.github/workflows/build_latest.yml | 311 +++++++++++++++++++++++++++++
1 file changed, 311 insertions(+)
create mode 100644 .github/workflows/build_latest.yml
diff --git a/.github/workflows/build_latest.yml b/.github/workflows/build_latest.yml
new file mode 100644
index 0000000..cd6d4d9
--- /dev/null
+++ b/.github/workflows/build_latest.yml
@@ -0,0 +1,311 @@
+name: Build Latest
+
+on:
+ workflow_dispatch:
+ inputs:
+ doRelease:
+ description: 'Publish new release'
+ type: boolean
+ default: false
+ required: false
+ tag:
+ type: string
+ description: 'Release version tag (e.g. v0.2.1-beta)'
+ required: true
+ ref:
+ type: string
+ description: 'Git ref from which to release'
+ required: true
+ default: 'main'
+
+env:
+ DOTNET_SDK_VERSION: "9.0.*"
+ ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
+
+jobs:
+ set-date:
+ runs-on: ubuntu-latest
+ outputs:
+ date: ${{ steps.get_date.outputs.date }}
+ tag: ${{ steps.format_tag.outputs.tag }}
+ steps:
+ - name: Get Date in UTC+8
+ id: get_date
+ run: |
+ DATE=$(date -u -d '8 hours' +'%Y%m%d')
+ echo "date=${DATE}" >> "$GITHUB_OUTPUT"
+
+ - name: Determine Tag
+ id: format_tag
+ run: |
+ if [ "${{ github.event.inputs.doRelease }}" == "true" ]; then
+ TAG="${{ github.event.inputs.tag }}"
+ else
+ TAG="actions-$GITHUB_RUN_ID"
+ fi
+ echo "tag=${TAG}" >> "$GITHUB_OUTPUT"
+
+ build-win-nt6_0-x86:
+ runs-on: windows-latest
+ needs: set-date
+
+ steps:
+ - uses: actions/checkout@v1
+
+ - name: Install zip
+ run: choco install zip --no-progress --yes
+
+ - name: Set up dotnet
+ uses: actions/setup-dotnet@v3
+ with:
+ dotnet-version: ${{ env.DOTNET_SDK_VERSION }}
+
+ - run: powershell -Command "(Get-Content src/N_m3u8DL-RE/N_m3u8DL-RE.csproj) -replace '.*', 'net9.0-windows' | Set-Content src/N_m3u8DL-RE/N_m3u8DL-RE.csproj"
+ - run: dotnet add src/N_m3u8DL-RE/N_m3u8DL-RE.csproj package YY-Thunks --version 1.1.4
+ - run: dotnet add src/N_m3u8DL-RE/N_m3u8DL-RE.csproj package VC-LTL --version 5.1.1
+ - run: dotnet publish src/N_m3u8DL-RE -p:TargetPlatformMinVersion=6.0 -r win-x86 -c Release -o artifact-x86
+
+ - name: Package [win-x86]
+ run: |
+ cd artifact-x86
+ zip ../N_m3u8DL-RE_${{ needs.set-date.outputs.tag }}_win-NT6.0-x86_${{ needs.set-date.outputs.date }}.zip N_m3u8DL-RE.exe
+
+ - name: Upload Artifact[win-x86]
+ uses: actions/upload-artifact@v3.1.3
+ with:
+ name: win-NT6.0-x86
+ path: N_m3u8DL-RE_${{ needs.set-date.outputs.tag }}_win-NT6.0-x86_${{ needs.set-date.outputs.date }}.zip
+
+ build-win-x64-arm64:
+ runs-on: windows-latest
+ needs: set-date
+
+ steps:
+ - uses: actions/checkout@v1
+
+ - name: Install zip
+ run: choco install zip --no-progress --yes
+
+ - name: Set up dotnet
+ uses: actions/setup-dotnet@v3
+ with:
+ dotnet-version: ${{ env.DOTNET_SDK_VERSION }}
+
+ - run: dotnet publish src/N_m3u8DL-RE -r win-x64 -c Release -o artifact-x64
+ - run: dotnet publish src/N_m3u8DL-RE -r win-arm64 -c Release -o artifact-arm64
+
+ - name: Package [win]
+ run: |
+ cd artifact-x64
+ zip ../N_m3u8DL-RE_${{ needs.set-date.outputs.tag }}_win-x64_${{ needs.set-date.outputs.date }}.zip N_m3u8DL-RE.exe
+ cd ../artifact-arm64
+ zip ../N_m3u8DL-RE_${{ needs.set-date.outputs.tag }}_win-arm64_${{ needs.set-date.outputs.date }}.zip N_m3u8DL-RE.exe
+
+ - name: Upload Artifact [win-x64]
+ uses: actions/upload-artifact@v3.1.3
+ with:
+ name: win-x64
+ path: N_m3u8DL-RE_${{ needs.set-date.outputs.tag }}_win-x64_${{ needs.set-date.outputs.date }}.zip
+
+ - name: Upload Artifact [win-arm64]
+ uses: actions/upload-artifact@v3.1.3
+ with:
+ name: win-arm64
+ path: N_m3u8DL-RE_${{ needs.set-date.outputs.tag }}_win-arm64_${{ needs.set-date.outputs.date }}.zip
+
+ build-linux-x64-arm64:
+ runs-on: ubuntu-latest
+ needs: set-date
+
+ steps:
+ # https://learn.microsoft.com/zh-cn/dotnet/core/deploying/native-aot/cross-compile
+ - run: |
+ sudo dpkg --add-architecture arm64
+ sudo bash -c 'cat > /etc/apt/sources.list.d/arm64.list <