actions: Do everything in the same workflow

This commit is contained in:
Iscle 2023-09-03 03:47:26 +02:00
parent 69f6395bec
commit 17a199c2bc
2 changed files with 36 additions and 45 deletions

View File

@ -48,5 +48,39 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: compiled-binaries
path: |
libv4a_re_*.so
path: libv4a_re_*.so
package:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
# Download the compiled binaries from the 'build' workflow
- name: Download compiled libraries
uses: actions/download-artifact@v3
with:
name: compiled-binaries
path: compiled/
# Prepare Magisk module directory by copying the necessary ABI files
- name: Prepare Magisk Module
run: |
for abi in armeabi-v7a arm64-v8a x86 x86_64; do
mkdir -p module/common/files/$abi
cp compiled/libv4a_re_$abi.so module/common/files/$abi/
done
# Zip the Magisk module
- name: Zip Magisk Module
run: |
cd module
zip -r ../magisk_module.zip ./
# Upload the zipped Magisk module as an artifact
- name: Upload Magisk Module
uses: actions/upload-artifact@v3
with:
name: magisk_module
path: magisk_module.zip

View File

@ -1,43 +0,0 @@
name: Package Magisk Module
on:
workflow_run:
workflows: ["build"]
types:
- completed
jobs:
package:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
# Download the compiled binaries from the 'build' workflow
- name: Download compiled libraries
uses: actions/download-artifact@v3
with:
name: compiled-binaries
path: compiled/
# Prepare Magisk module directory by copying the necessary ABI files
- name: Prepare Magisk Module
run: |
for abi in armeabi-v7a arm64-v8a x86 x86_64; do
mkdir -p module/common/files/$abi
cp compiled/libv4a_re_$abi.so module/common/files/$abi/
done
# Zip the Magisk module
- name: Zip Magisk Module
run: |
cd module
zip -r ../magisk_module.zip ./
# Upload the zipped Magisk module as an artifact
- name: Upload Magisk Module
uses: actions/upload-artifact@v3
with:
name: magisk_module
path: magisk_module.zip