Skip to content
This repository has been archived by the owner on Sep 19, 2023. It is now read-only.

update readme

update readme #27

Workflow file for this run

on: push
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
id: build
run: |
cd mindetach
VER=$(grep version= module.prop | cut -d= -f2)
echo "VER=$VER" >> $GITHUB_OUTPUT
zip -r "../mindetach-${VER}.zip" .
- name: Upload module to release
uses: svenstaro/upload-release-action@v2
with:
file: mindetach-${{ steps.build.outputs.VER }}.zip
release_name: mindetach-${{ steps.build.outputs.VER }}
tag: ${{ steps.build.outputs.VER }}
overwrite: true