Add update check to build (#19)

* Remove armv7 temporarily

* Improve build script

* Add update check for build

* Update README

* Fix build script

* Change build version format

* Improve update check

* Bump build version to v1.5.4

* Fix build Dockerfile

* Fix build action yaml

Co-authored-by: GitHub Actions <actions@github.com>
This commit is contained in:
Xiaonan Shen
2021-01-07 18:19:11 +08:00
committed by GitHub
parent bde4667ff4
commit 2647f8540e
8 changed files with 78 additions and 59 deletions

View File

@@ -7,11 +7,11 @@ on:
- dev
paths:
- .github/workflows/update-check.yaml
- update-check.sh
- update-check.py
pull_request:
paths:
- .github/workflows/update-check.yaml
- update-check.sh
- update-check.py
schedule:
- cron: '0 0 * * *' # runs everyday at midnight
@@ -24,4 +24,4 @@ jobs:
with:
token: ${{ secrets.PERSONAL_TOKEN }}
- name: Check Update
run: bash update-check.sh ${{ github.event_name == 'pull_request' }}
run: python3 update-check.py ${{ github.event_name == 'pull_request' }}