module: Add update json #3
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: Build Zip | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- '.github/workflows/build.yml' | |
- '.github/scripts/**' | |
- 'webui/**' | |
- 'module/**' | |
- 'version' | |
jobs: | |
build: | |
name: Build Flashable Zip | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Build WebUI | |
working-directory: ./webui | |
run: | | |
npm install | |
npm run build | |
cp ./dist/* ../module/webroot | |
- name: Compile Flashable Zip | |
id: compileZip | |
run: bash .github/scripts/compile_zip.sh | |
- name: Upload To Telegram | |
env: | |
CHAT_ID: ${{ secrets.CHAT_ID }} | |
BOT_TOKEN: ${{ secrets.BOT_TOKEN }} | |
COMMIT_MESSAGE: ${{ github.event.head_commit.message }} | |
COMMIT_URL: ${{ github.event.head_commit.url }} | |
RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | |
TITLE: Color Scheme | |
run: | | |
if [ ! -z "${{ secrets.CHAT_ID }}" ] && [ ! -z "${{ secrets.BOT_TOKEN }}" ]; then | |
export VERSION=$(git rev-list --count HEAD) | |
bash .github/scripts/telegram_bot.sh ${{ steps.compileZip.outputs.zipName }} | |
else | |
echo "Telegram bot token or chatid is undefined, please add it to repository secrets!" | |
exit 1 | |
fi |