mirror of
https://github.com/MustardChef/WSABuilds.git
synced 2024-12-26 03:11:49 +01:00
Update zip name
This commit is contained in:
parent
e8f1dff808
commit
b133293255
15
.github/workflows/magisk.yml
vendored
15
.github/workflows/magisk.yml
vendored
@ -358,11 +358,20 @@ jobs:
|
|||||||
- name: Generate artifact name
|
- name: Generate artifact name
|
||||||
run: |
|
run: |
|
||||||
variant="${{ github.event.inputs.gapps_variant }}"
|
variant="${{ github.event.inputs.gapps_variant }}"
|
||||||
if [[ "$variant" = "none" || "$variant" = "" ]]; then
|
root="${{ github.event.inputs.root_sol }}"
|
||||||
echo "artifact_name=WSA-with-Magisk-NoGApps_${{ matrix.arch }}" >> $GITHUB_ENV
|
if [[ "$root" = "none" ]]; then
|
||||||
|
name1="-"
|
||||||
|
elif [[ "$root" = "" ]]; then
|
||||||
|
name1="-with-magisk"
|
||||||
else
|
else
|
||||||
echo "artifact_name=WSA-with-Magisk-GApps-${variant}_${{ matrix.arch }}" >> $GITHUB_ENV
|
name1="-with-${root}"
|
||||||
fi
|
fi
|
||||||
|
if [[ "$variant" = "none" || "$variant" = "" ]]; then
|
||||||
|
name2="-NoGApps"
|
||||||
|
else
|
||||||
|
name2="-GApps-${variant}"
|
||||||
|
fi
|
||||||
|
echo "artifact_name=WSA${name1}${name2}_${{ matrix.arch }}" >> $GITHUB_ENV
|
||||||
- name: Upload WSA
|
- name: Upload WSA
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
|
Loading…
Reference in New Issue
Block a user