Skip to content

Commit

Permalink
Create files.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Leev1s committed Jan 2, 2024
1 parent 590cd1f commit 4c9b5a0
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/files.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Convert Conf Files

on:
schedule:
- cron: "0 2 * * *" # 每天执行
workflow_dispatch:

jobs:
convert_conf_files:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9

- name: Install dependencies
run: pip3 install glob2

- name: Convert Conf Files
env:
DNS_URL: ${{ secrets.DNS_URL }}
run: python convert.py

- name: Create Artifacts
uses: actions/upload-artifact@v2
with:
name: converted-files
path: converted

0 comments on commit 4c9b5a0

Please sign in to comment.