This commit is contained in:
parent
bda5c16565
commit
9c44a9cc15
1 changed files with 22 additions and 10 deletions
|
@ -4,14 +4,14 @@ on:
|
||||||
- 'main'
|
- 'main'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
setup:
|
#setup:
|
||||||
runs-on: docker
|
# runs-on: docker
|
||||||
steps:
|
# steps:
|
||||||
- uses: actions/checkout@v4
|
# - uses: actions/checkout@v4
|
||||||
- name: Setup
|
# - name: Setup
|
||||||
run: |
|
# run: |
|
||||||
echo $PWD
|
# echo $PWD
|
||||||
ls -l
|
# ls -l
|
||||||
build:
|
build:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container:
|
container:
|
||||||
|
@ -19,5 +19,17 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Setup
|
- name: Setup
|
||||||
run: |
|
run: |
|
||||||
echo $PWD
|
apk add --no-cache git
|
||||||
ls -l
|
- name: Clone Repo
|
||||||
|
run: |
|
||||||
|
git clone "$CI_REPOSITORY_URL" .
|
||||||
|
git checkout
|
||||||
|
- name: Build
|
||||||
|
run: |
|
||||||
|
asciidoctor-epub3 -D output book.adoc
|
||||||
|
- name: Upload
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: book
|
||||||
|
path: output/
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue