We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28bece8 commit 01125d1Copy full SHA for 01125d1
.github/workflows/lektor-build-deploy.yml
@@ -0,0 +1,19 @@
1
+name: Build and Deploy CC Open Source
2
+on: [push]
3
+jobs:
4
+ build-and-deploy:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@v1
8
+ - name: setup python version
9
+ uses: actions/setup-python@v1
10
+ with:
11
+ python-version: 3.7
12
+ - name: Install dependencies
13
+ run: |
14
+ pip install pipenv
15
+ pipenv install
16
+ pipenv run lektor build -f webpack
17
+ - name: Deploy to https://github.com/creativecommons/creativecommons.github.io
18
19
+ pipenv run lektor deploy ghpages
0 commit comments