Export files #298
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: Export files | |
on: | |
schedule: | |
- cron: "0 2 * * *" # 每天执行 | |
workflow_dispatch: | |
jobs: | |
convert_conf_files: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: pip3 install glob2 | |
- name: Convert Conf Files | |
env: | |
CN_DNS: ${{ secrets.CN_DNS }} | |
THE_DNS: ${{ secrets.THE_DNS }} | |
run: python convert.py | |
- name: Create Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: converted-files | |
path: converted |