We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc9a333 commit d784e68Copy full SHA for d784e68
.github/workflows/pelican.yml
@@ -9,11 +9,27 @@ 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: Create CNAME file
23
+ run: echo "saocarlos.pyladies.com" > ./CNAME
24
25
+ - name: Check-out gh-pages branch
26
+ uses: actions/checkout@v2
27
+ with:
28
+ ref: gh-pages
29
30
+ - name: Add CNAME file to gh-pages branch
31
+ uses: EndBug/add-and-commit@v9
32
33
+ message: 'Add CNAME'
34
+ add: 'CNAME'
35
+ cwd: '.'
0 commit comments