We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a202702 commit 8555859Copy full SHA for 8555859
.github/workflows/deploy.yml
@@ -15,10 +15,10 @@ jobs:
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 \
+ -v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site2:/srv/jekyll/_site \
21
jekyll/builder:latest /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future"
+ cp -r ${{ github.workspace }}/_site2 ${{ github.workspace }}/_site
22
- name: Setup Python
23
uses: actions/setup-python@v2
24
with:
0 commit comments