Update #9013
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: Update | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: 0 */4 * * * | |
jobs: | |
Smartdns-GFWList: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Smartdns GFWList | |
run: | | |
bash default/update.sh | |
- name: Push | |
id: gfw-push | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Update GFWList | |
skip_dirty_check: false | |
commit_user_name: Action Bot | |
commit_user_email: 41898282+github-actions[bot]@users.noreply.github.com | |
commit_author: Action <[email protected]> | |
Overture: | |
name: Update Overture | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Update Overture | |
run: | | |
latest_release=$(curl -s -N https://api.github.com/repos/shawn1m/overture/releases | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/' | head -n 1) | |
[ $latest_release ] && sed -i "s/ARG VERSION=.*/ARG VERSION=$latest_release/g" docker/overture/Dockerfile | |
- name: Update Smartdns | |
run: | | |
latest_release=$(curl -s -N https://api.github.com/repos/pymumu/smartdns/releases | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/' | head -n 1) | |
[ $latest_release ] && sed -i "s/ARG VERSION=.*/ARG VERSION=$latest_release/g" docker/smartdns/Dockerfile | |
- name: Push | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Update Dockerfile | |
skip_dirty_check: false | |
commit_user_name: Action Bot | |
commit_user_email: 41898282+github-actions[bot]@users.noreply.github.com | |
commit_author: Action <[email protected]> |