[Actions] Fidgeting
This commit is contained in:
parent
a70c91ff33
commit
0cce623b4c
1 changed files with 13 additions and 7 deletions
|
@ -4,17 +4,23 @@ jobs:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
- run: ls -alh ${{ GITHUB_WORKSPACE }}
|
||||||
jekyll:
|
jekyll:
|
||||||
needs: setup
|
needs: setup
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container:
|
container:
|
||||||
image: jekyll/builder:latest
|
image: jekyll/builder:latest
|
||||||
steps:
|
steps:
|
||||||
|
- name: Jekyll here?
|
||||||
|
run: jekyll help
|
||||||
- name: Change to source
|
- name: Change to source
|
||||||
run: cd ${{ GITHUB_WORKSPACE }}
|
run: |
|
||||||
- name: Update Gems
|
cd ${{ GITHUB_WORKSPACE }}
|
||||||
run: bundle update
|
pwd
|
||||||
- name: Build Site
|
ls -alh
|
||||||
run: jekyll build
|
# - name: Update Gems
|
||||||
- name: Check the output
|
# run: bundle update
|
||||||
run: ls -alh ./_site
|
# - name: Build Site
|
||||||
|
# run: jekyll build
|
||||||
|
# - name: Check the output
|
||||||
|
# run: ls -alh ./_site
|
||||||
|
|
Loading…
Reference in a new issue