slitaz5cn/.github/workflows/teasiu-5.0.tazpkg.yml

39 lines
1.2 KiB
YAML
Raw Normal View History

2021-04-29 10:52:54 +00:00
name: Update teasiu-5.0.tazpkg
on:
workflow_dispatch:
schedule:
- cron: '0 */24 * * *'
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout codebase
uses: actions/checkout@v2
2021-04-29 10:55:05 +00:00
- name: Update teasiu-5.0.tazpkg Version
2021-04-29 10:52:54 +00:00
run: |
2022-02-15 17:20:54 +00:00
LASTEST_TAG="$( curl -fsSL "https://slitaz.cn/dl/teasiu-5.0.tazpkg" | md5sum | cut -d" " -f1 )"
2021-04-29 10:52:54 +00:00
echo "LASTEST_TAG=$LASTEST_TAG" >> ${GITHUB_ENV}
2021-04-29 11:18:07 +00:00
CURRENT_TAG="$( md5sum packages/teasiu-5.0.tazpkg | cut -d" " -f1 )"
2021-04-29 10:52:54 +00:00
echo "CURRENT_TAG=$CURRENT_TAG" >> ${GITHUB_ENV}
if [ ${CURRENT_TAG} != ${LASTEST_TAG} ]
then
2022-02-15 17:20:54 +00:00
wget -O ./packages/teasiu-5.0.tazpkg https://slitaz.cn/dl/teasiu-5.0.tazpkg
2021-04-29 10:52:54 +00:00
fi
- name: Push
2021-04-29 11:18:07 +00:00
if: env.CURRENT_TAG != env.LASTEST_TAG && !cancelled()
2021-04-29 10:52:54 +00:00
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 teasiu-5.0.tazpkg to ${LASTEST_TAG}"
git push -v --progress
2021-05-05 00:15:51 +00:00
- name: Delete workflow runs
uses: GitRML/delete-workflow-runs@main
with:
retain_days: 1
keep_minimum_runs: 3