We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f31fc7e commit a202702Copy full SHA for a202702
.github/workflows/deploy.yml
@@ -14,10 +14,11 @@ jobs:
14
- uses: actions/checkout@v2
15
- name: Build the site in the jekyll/builder container
16
run: |
17
+ mkdir ${{ github.workspace }}/_site
18
+ chmod -R 777 ${{ github.workspace }}/_site
19
docker run \
20
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \
21
jekyll/builder:latest /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future"
- chmod -R 777 ${{ github.workspace }}/_site
22
- name: Setup Python
23
uses: actions/setup-python@v2
24
with:
0 commit comments