update
This commit is contained in:
parent
e882f7fa90
commit
6d026f5554
|
@ -0,0 +1,38 @@
|
||||||
|
name: Update linux-3.16.55.tazpkg
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
schedule:
|
||||||
|
- cron: '0 */23 * * *'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
update:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout codebase
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Update linux-3.16.55.tazpkg Version
|
||||||
|
run: |
|
||||||
|
LASTEST_TAG="$( curl -fsSL "http://www.ecoo.top:8083/dl/slitaz/linux-3.16.55.tazpkg" | md5sum | cut -d" " -f1 )"
|
||||||
|
echo "LASTEST_TAG=$LASTEST_TAG" >> ${GITHUB_ENV}
|
||||||
|
CURRENT_TAG="$( md5sum packages/linux-3.16.55.tazpkg | cut -d" " -f1 )"
|
||||||
|
echo "CURRENT_TAG=$CURRENT_TAG" >> ${GITHUB_ENV}
|
||||||
|
if [ ${CURRENT_TAG} != ${LASTEST_TAG} ]
|
||||||
|
then
|
||||||
|
wget -O ./packages/linux-3.16.55.tazpkg http://www.ecoo.top:8083/dl/slitaz/linux-3.16.55.tazpkg
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Push
|
||||||
|
if: env.CURRENT_TAG != env.LASTEST_TAG && !cancelled()
|
||||||
|
run: |
|
||||||
|
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
||||||
|
git config --local user.name "github-actions[bot]"
|
||||||
|
git commit -am "Update linux-3.16.55.tazpkg to ${LASTEST_TAG}"
|
||||||
|
git push -v --progress
|
||||||
|
|
||||||
|
- name: Delete workflow runs
|
||||||
|
uses: GitRML/delete-workflow-runs@main
|
||||||
|
with:
|
||||||
|
retain_days: 1
|
||||||
|
keep_minimum_runs: 3
|
Loading…
Reference in New Issue