mirror of
https://github.com/JDM170/ReVanced_Builder
synced 2025-11-29 14:41:46 +07:00
Change step names in CI
Signed-off-by: Lev Rusanov <30170278+JDM170@users.noreply.github.com>
This commit is contained in:
22
.github/workflows/Build.yml
vendored
22
.github/workflows/Build.yml
vendored
@@ -13,37 +13,37 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@main
|
- uses: actions/checkout@main
|
||||||
|
|
||||||
- name: Installing AngleSharp
|
- name: Install AngleSharp
|
||||||
run: |
|
run: |
|
||||||
Install-Package AngleSharp -Source https://www.nuget.org/api/v2 -SkipDependencies -Force
|
Install-Package AngleSharp -Source https://www.nuget.org/api/v2 -SkipDependencies -Force
|
||||||
|
|
||||||
- name: Downloading YouTube
|
- name: Download YouTube
|
||||||
run: |
|
run: |
|
||||||
New-Item -Path Temp -ItemType Directory -Force
|
New-Item -Path Temp -ItemType Directory -Force
|
||||||
|
|
||||||
. Scripts\YouTube.ps1
|
. Scripts\YouTube.ps1
|
||||||
|
|
||||||
- name: Downloading ReVanced CLI
|
- name: Download ReVanced CLI
|
||||||
run: |
|
run: |
|
||||||
. Scripts\ReVanced_CLI.ps1
|
. Scripts\ReVanced_CLI.ps1
|
||||||
|
|
||||||
- name: Downloading ReVanced Patches
|
- name: Download ReVanced Patches
|
||||||
run: |
|
run: |
|
||||||
. Scripts\ReVanced_Patches.ps1
|
. Scripts\ReVanced_Patches.ps1
|
||||||
|
|
||||||
- name: Downloading ReVanced Integrations
|
- name: Download ReVanced Integrations
|
||||||
run: |
|
run: |
|
||||||
. Scripts\ReVanced_Intergrations.ps1
|
. Scripts\ReVanced_Intergrations.ps1
|
||||||
|
|
||||||
- name: Downloading Vanced MicroG
|
- name: Download Vanced MicroG
|
||||||
run: |
|
run: |
|
||||||
. Scripts\MicroG.ps1
|
. Scripts\MicroG.ps1
|
||||||
|
|
||||||
- name: Downloading and expanding Zulu JDK
|
- name: Download and expanding Zulu JDK
|
||||||
run: |
|
run: |
|
||||||
. Scripts\Zulu_JDK.ps1
|
. Scripts\Zulu_JDK.ps1
|
||||||
|
|
||||||
- name: Building
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
$JavaPath = (Resolve-Path -Path "Temp\jdk_windows-x64_bin\zulu*win_x64\bin\java.exe").Path
|
$JavaPath = (Resolve-Path -Path "Temp\jdk_windows-x64_bin\zulu*win_x64\bin\java.exe").Path
|
||||||
|
|
||||||
@@ -60,7 +60,7 @@ jobs:
|
|||||||
--out "Temp\revanced.apk" `
|
--out "Temp\revanced.apk" `
|
||||||
"Temp\youtube.apk"
|
"Temp\youtube.apk"
|
||||||
|
|
||||||
- name: Creating archive
|
- name: Create archive
|
||||||
run: |
|
run: |
|
||||||
Get-ChildItem Temp\Temp -Recurse -Force
|
Get-ChildItem Temp\Temp -Recurse -Force
|
||||||
$Parameters = @{
|
$Parameters = @{
|
||||||
@@ -71,7 +71,7 @@ jobs:
|
|||||||
}
|
}
|
||||||
Compress-Archive @Parameters
|
Compress-Archive @Parameters
|
||||||
|
|
||||||
- name: Creating Release Notes
|
- name: Create Release Notes
|
||||||
id: read_release
|
id: read_release
|
||||||
run: |
|
run: |
|
||||||
# https://en.wikipedia.org/wiki/Percent-encoding
|
# https://en.wikipedia.org/wiki/Percent-encoding
|
||||||
@@ -81,7 +81,7 @@ jobs:
|
|||||||
$ReleaseName = Get-Date -f "yyyy.MM.dd"
|
$ReleaseName = Get-Date -f "yyyy.MM.dd"
|
||||||
echo "RELEASE_NAME=$ReleaseName" >> $env:GITHUB_ENV
|
echo "RELEASE_NAME=$ReleaseName" >> $env:GITHUB_ENV
|
||||||
|
|
||||||
- name: Uploading to Releases
|
- name: Upload to Releases
|
||||||
uses: softprops/action-gh-release@master
|
uses: softprops/action-gh-release@master
|
||||||
with:
|
with:
|
||||||
tag_name: ${{ env.RELEASE_NAME }}
|
tag_name: ${{ env.RELEASE_NAME }}
|
||||||
|
|||||||
Reference in New Issue
Block a user