File tree 2 files changed +36
-1
lines changed
2 files changed +36
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Build Documentation
2
+ on :
3
+ release :
4
+ types : [created]
5
+ jobs :
6
+ build :
7
+ runs-on : ubuntu-latest
8
+ strategy :
9
+ max-parallel : 1
10
+ matrix :
11
+ python-version : ['3.9']
12
+ steps :
13
+ - uses : actions/checkout@v4
14
+ - name : Set up Python ${{ matrix.python-version }}
15
+ uses : actions/setup-python@v5
16
+ with :
17
+ python-version : ${{ matrix.python-version }}
18
+ - name : Install Dependencies
19
+ run : |
20
+ python -m pip install --upgrade pip
21
+ pip install -r requirements-dev.txt
22
+ - name : Configure Git Credentials
23
+ run : |
24
+ git config user.name github-actions[bot]
25
+ git config user.email 41898282+github-actions[bot]@users.noreply.github.com
26
+ - uses : actions/cache@v4
27
+ with :
28
+ key : mkdocs-material-${{ env.cache_id }}
29
+ path : .cache
30
+ restore-keys : |
31
+ mkdocs-material-
32
+ - name : Publish Documentation
33
+ run : |
34
+ echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
35
+ mkdocs gh-deploy --force
Original file line number Diff line number Diff line change 3
3
__url__ = "https://github.com/thewebscraping/tls-requests"
4
4
__author__ = "Tu Pham"
5
5
__author_email__ = "[email protected] "
6
- __version__ = "1.0.9 "
6
+ __version__ = "1.1.0 "
7
7
__license__ = "MIT"
You can’t perform that action at this time.
0 commit comments