Generator Hosts #11506
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: Generator Hosts | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 */2 * * *" | |
jobs: | |
start_run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Codes | |
uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v1 | |
- name: Install Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Start Generate | |
run: python main.py | |
- name: Start README | |
run: python readme.py | |
- name: Update Hosts | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Actions" | |
if [ -n "$(git status --porcelain)" ]; then | |
git add . | |
git commit -m "update hosts $(date +'%B %d, %Y %T (%Z)')" | |
git push origin $(git branch --show-current) | |
else | |
echo "Oops, seems push failed!" | |
exit 1 | |
fi | |
# - name: Setup Tag | |
# run: | | |
# echo "tagname=$(date +'%y.%m.%d.%H%M%S')" >> $GITHUB_ENV | |
# git tag ${{ env.tagname }} | |
# git push origin --tags | |
# - name: Pack DNS | |
# run: | | |
# zip dns.zip dns/* | |
# - name: Post Release | |
# uses: softprops/action-gh-release@v1 | |
# with: | |
# tag_name: ${{ env.tagname }} | |
# files: | | |
# dns.zip | |
# - name: Sync Gitee | |
# uses: Yikun/hub-mirror-action@master | |
# with: | |
# src: github/caibingcheng | |
# dst: gitee/caibingcheng | |
# force_update: true | |
# dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} | |
# dst_token: ${{ secrets.GITEE_TOKEN }} | |
# static_list: "hosts" |