We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc9a333 commit ce1b1cbCopy full SHA for ce1b1cb
.github/workflows/pelican.yml
@@ -9,11 +9,28 @@ on:
9
10
jobs:
11
build:
12
-
13
runs-on: ubuntu-latest
14
15
steps:
16
- uses: actions/checkout@v2
17
- - uses: bimbimprasetyoafif/pelican-simple@v1
+
+ - name: Build Pelican website
18
+ uses: bimbimprasetyoafif/pelican-simple@v1
19
env:
- GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
20
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
21
22
+ - name: Check-out gh-pages branch
23
+ uses: actions/checkout@v2
24
+ with:
25
+ ref: gh-pages
26
+ path: gh-pages
27
28
+ - name: Create CNAME file
29
+ run: echo "saocarlos.pyladies.com" > ./gh-pages/CNAME
30
31
+ - name: Add CNAME file to gh-pages branch
32
+ uses: EndBug/add-and-commit@v9
33
34
+ message: 'Add CNAME'
35
+ add: 'CNAME'
36
+ cwd: 'gh-pages'
0 commit comments