123456789101112131415161718192021222324252627 |
- name: "Genshin Impact Helper"
- on:
- # workflow_dispatch 手动点击 run 触发
- workflow_dispatch:
- schedule:
- - cron: "0 22 * * *"
- jobs:
- build:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
- - name: Set up python
- uses: actions/setup-python@v5
- with:
- python-version: 3.8
- - name: Run sign
- run: |
- pip install -r requirements.txt
- echo "${{ secrets.COOKIE }}" | tr '#' "\n" | xargs -I {} sh -c 'echo "{}" | python3 ./genshin.py'
|