This commit is contained in:
parent
bda5c16565
commit
9c44a9cc15
1 changed files with 22 additions and 10 deletions
|
@ -4,14 +4,14 @@ on:
|
|||
- 'main'
|
||||
|
||||
jobs:
|
||||
setup:
|
||||
runs-on: docker
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Setup
|
||||
run: |
|
||||
echo $PWD
|
||||
ls -l
|
||||
#setup:
|
||||
# runs-on: docker
|
||||
# steps:
|
||||
# - uses: actions/checkout@v4
|
||||
# - name: Setup
|
||||
# run: |
|
||||
# echo $PWD
|
||||
# ls -l
|
||||
build:
|
||||
runs-on: docker
|
||||
container:
|
||||
|
@ -19,5 +19,17 @@ jobs:
|
|||
steps:
|
||||
- name: Setup
|
||||
run: |
|
||||
echo $PWD
|
||||
ls -l
|
||||
apk add --no-cache git
|
||||
- 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