Update Profiles on Windows #198
This file contains hidden or 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 Profiles on Windows | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 3 ? * WED,SAT " | |
| jobs: | |
| update-profiles: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version-file: '.python-version' | |
| architecture: x64 | |
| # - name: Install Python dependencies | |
| # uses: py-actions/py-dependency-install@v3 | |
| # with: | |
| # path: "auto_getter/requirements.txt" | |
| # update-pip: "true" | |
| # update-setuptools: "true" | |
| # update-wheel: "true" | |
| - name: Run Scripts | |
| run: | | |
| pip3 install beautifulsoup4 | |
| pwsh ./run.ps1 | |
| - name: Add Commit | |
| run: | | |
| Set-TimeZone -Id "China Standard Time" | |
| $china_date = date +%Y-%m-%d" "%H:%M:%S | |
| $message = "更新(代理配置): \`${china_date}\` 更新。" | |
| git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
| git config --global user.name "github-actions[bot]" | |
| git add . | |
| - name: Push Changes | |
| uses: ad-m/github-push-action@master | |
| with: | |
| github_token: ${{ secrets.ACCESS_TOKEN }} |