ci: make two releases per push #19
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: "pre-release" | |
on: | |
push: | |
branches: | |
- "master" | |
- "standalone" | |
workflow_dispatch: | |
jobs: | |
pre-release: | |
name: "Release" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout Master Branch" | |
uses: actions/checkout@v3 | |
with: | |
ref: 'master' | |
- name: "Extract Master Version Code" | |
run: | | |
VERSION_CODE=$(grep 'version=' module.prop | cut -d'=' -f2) | |
echo "MASTER_VERSION_CODE=$VERSION_CODE" >> $GITHUB_ENV | |
- name: "Build Master" | |
run: | | |
sh ./build.sh github | |
mv *.zip "eMagisk-full-${{ env.MASTER_VERSION_CODE }}.zip" | |
- name: "Checkout Standalone Branch" | |
uses: actions/checkout@v3 | |
with: | |
ref: 'standalone' | |
- name: "Extract Standalone Version Code" | |
run: | | |
VERSION_CODE=$(grep 'version=' module.prop | cut -d'=' -f2) | |
echo "STANDALONE_VERSION_CODE=$VERSION_CODE" >> $GITHUB_ENV | |
- name: "Build Standalone" | |
run: | | |
sh ./build.sh github | |
mv *.zip "eMagisk-noatlas-${{ env.STANDALONE_VERSION_CODE }}.zip" | |
- uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "release-v${{ env.MASTER_VERSION_CODE }}-v${{ env.STANDALONE_VERSION_CODE }}" | |
prerelease: true | |
title: "Combined Release v${{ env.MASTER_VERSION_CODE }} & v${{ env.STANDALONE_VERSION_CODE }}" | |
files: | | |
*.zip |