separate checkout and build so checkout runs on a more capable image
This commit is contained in:
parent
8f51feb735
commit
62f86a0802
@ -7,16 +7,21 @@ on:
|
|||||||
- master
|
- master
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
checkout:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: catthehacker/ubuntu:act-latest
|
||||||
|
steps:
|
||||||
|
- name: Check out the repo
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
image: gitea.jbrumond.me/doc-utils/utils:0.2
|
image: gitea.jbrumond.me/doc-utils/utils:0.2
|
||||||
steps:
|
steps:
|
||||||
- name: Check out the repo
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- name: Build docs to webpage
|
- name: Build docs to webpage
|
||||||
run: docs2website ./config.yaml
|
run: docs2website config.yaml
|
||||||
|
|
||||||
- name: List files
|
- name: List files
|
||||||
run: ls -l www
|
run: ls -l www
|
||||||
|
Loading…
x
Reference in New Issue
Block a user