[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
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- run: ls -alh ${{ GITHUB_WORKSPACE }}
|
||||
jekyll:
|
||||
needs: setup
|
||||
runs-on: docker
|
||||
container:
|
||||
image: jekyll/builder:latest
|
||||
steps:
|
||||
- name: Jekyll here?
|
||||
run: jekyll help
|
||||
- name: Change to source
|
||||
run: cd ${{ GITHUB_WORKSPACE }}
|
||||
- name: Update Gems
|
||||
run: bundle update
|
||||
- name: Build Site
|
||||
run: jekyll build
|
||||
- name: Check the output
|
||||
run: ls -alh ./_site
|
||||
run: |
|
||||
cd ${{ GITHUB_WORKSPACE }}
|
||||
pwd
|
||||
ls -alh
|
||||
# - name: Update Gems
|
||||
# run: bundle update
|
||||
# - name: Build Site
|
||||
# run: jekyll build
|
||||
# - name: Check the output
|
||||
# run: ls -alh ./_site
|
||||
|
|
Loading…
Reference in a new issue