Skip to content

Commit 2949ce9

Browse files
authored
Create test.yml
1 parent 1c094b9 commit 2949ce9

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/test.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: deploy-gh-page
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
cd:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
12+
- name: Install Dependencies
13+
run: sudo apt-get install gettext
14+
15+
- name: Build
16+
run: make all
17+
18+
- name: Deploy to gh page
19+
uses: JamesIves/[email protected]
20+
with:
21+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22+
BRANCH: gh-pages
23+
FOLDER: ../cpython/Doc/build/html
24+
CLEAN: true

0 commit comments

Comments
 (0)