File tree Expand file tree Collapse file tree 2 files changed +24
-5
lines changed
Expand file tree Collapse file tree 2 files changed +24
-5
lines changed Original file line number Diff line number Diff line change 1+ name : test
2+ on :
3+ push :
4+ branches :
5+ - ' main' # matches main branch
6+
7+ jobs :
8+ test :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - uses : actions/checkout@v4
12+ with :
13+ fetch-depth : 0
14+ - uses : actions/setup-python@v4
15+ with :
16+ python-version : ' 3.x'
17+ cache : ' pip'
18+ - run : pip install -r .acimov/requirements.txt
19+ - run : python .acimov/publish.py
20+ - uses : peaceiris/actions-gh-pages@v4
21+ with :
22+ github_token : ${{ secrets.GITHUB_TOKEN }}
23+ publish_dir : ./public
24+ publish_branch : documentation
Original file line number Diff line number Diff line change 1818 cache : ' pip'
1919 - run : pip install -r .acimov/requirements.txt
2020 - run : python .acimov/publish.py
21- - uses : peaceiris/actions-gh-pages@v4
22- with :
23- github_token : ${{ secrets.GITHUB_TOKEN }}
24- publish_dir : ./public
25- publish_branch : documentation
You can’t perform that action at this time.
0 commit comments