create&release #12
Workflow file for this run
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
# create&release workflow for Magisk Module Git v1.0.0 by Ali BEYAZ | |
name: create&release | |
on: [workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: symbuzzer/fork-checkout-repo@main | |
with: | |
persist-credentials: false | |
fetch-depth: 0 | |
- name: Get module version | |
id: version | |
uses: symbuzzer/fork-github-action-json-property@master | |
with: | |
path: 'update.json' | |
prop_path: 'version' | |
- name: Creating module zip | |
run: | | |
sudo zip -r ${{ github.event.repository.name }}.zip * | |
- name: Create and upload release asset | |
uses: symbuzzer/fork-github-release@master | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag: ${{steps.version.outputs.prop}} | |
name: ${{steps.version.outputs.prop}} - beta | |
body: Please check [changelog](https://github.com/${{ github.repository }}/blob/${{ github.ref_name }}/CHANGELOG.md) for changes | |
files: ${{ github.event.repository.name }}-beta.zip | |
gzip: false | |
draft: false | |
prerelease: false | |
allow_override: true | |
- name: Cleanup module zip | |
run: | | |
rm ${{ github.event.repository.name }}.zip |