This commit is contained in:
slitaz-cn 2021-05-06 18:39:23 +08:00
parent cff58f6893
commit 54aa85a39c
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,38 @@
name: Update linux64-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 firefox.tazpkg Version
run: |
LASTEST_TAG="$( curl -fsSL "http://www.ecoo.top:8083/dl/slitaz/linux64-3.16.55.tazpkg" | md5sum | cut -d" " -f1 )"
echo "LASTEST_TAG=$LASTEST_TAG" >> ${GITHUB_ENV}
CURRENT_TAG="$( md5sum packages/linux64-3.16.55.tazpkg | cut -d" " -f1 )"
echo "CURRENT_TAG=$CURRENT_TAG" >> ${GITHUB_ENV}
if [ ${CURRENT_TAG} != ${LASTEST_TAG} ]
then
wget -O ./packages/linux64-3.16.55.tazpkg http://www.ecoo.top:8083/dl/slitaz/linux64-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 linux64-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