Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
Kartatz committed Jan 15, 2025
1 parent 7bc0738 commit 156ead2
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
16 changes: 15 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,18 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GL_TOKEN: ${{ secrets.GITLAB_TOKEN }}
run: |
python -B -u main.py
python -B -u main.py
- name: Run
run: |
git config --global user.email "[email protected]"
git config --global user.name "Your Name"
git branch timestamp
git checkout timestamp
date > timestamp
git add timestamp
git commit -m "Initial commit"
git push -f origin timestamp
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ async def mirror(client):

async def main():

async with httpx.AsyncClient(http2 = True, verify = False) as client:
async with httpx.AsyncClient(http2 = True, timeout = None) as client:
await mirror(client = client)

asyncio.run(main())

0 comments on commit 156ead2

Please sign in to comment.