Remove explicit website build in CI

We now can do both in make bake target as website and ebooks can run in
parallel.
This commit is contained in:
Cedric
2024-12-28 16:05:28 +00:00
parent d462e5adba
commit 972edd651b
2 changed files with 2 additions and 18 deletions

View File

@@ -81,14 +81,6 @@ jobs:
book/book_serif/book.log book/book_serif/book.log
book/book_serif/book.pdf book/book_serif/book.pdf
book/book-epub/book.epub book/book-epub/book.epub
- name: Bake the website
uses: addnab/docker-run-action@v3
with:
image: ${{ env.LATEST_IMAGE }}
options: -v ${{ github.workspace }}:/app
run: |
cd /app/book
make mrproper && make website
- name: Release baked website to S3 - name: Release baked website to S3
uses: shallwefootball/s3-upload-action@master uses: shallwefootball/s3-upload-action@master
with: with:

View File

@@ -27,14 +27,14 @@ jobs:
run: | run: |
cd /app/book cd /app/book
make printvars make printvars
- name: Test baking the release versions - name: Test baking the release versions and website
uses: addnab/docker-run-action@v3 uses: addnab/docker-run-action@v3
with: with:
image: ${{ env.DOCKER_IMAGE }} image: ${{ env.DOCKER_IMAGE }}
options: -v ${{ github.workspace }}:/app options: -v ${{ github.workspace }}:/app
run: | run: |
cd /app/book cd /app/book
make -j build_serif_pdf build_ebook make -j build_serif_pdf build_ebook website
- name: Upload book Artifacts - name: Upload book Artifacts
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
@@ -43,14 +43,6 @@ jobs:
book/book_serif/book.log book/book_serif/book.log
book/book_serif/book.pdf book/book_serif/book.pdf
book/book-epub/book.epub book/book-epub/book.epub
- name: Test building website
uses: addnab/docker-run-action@v3
with:
image: ${{ env.DOCKER_IMAGE }}
options: -v ${{ github.workspace }}:/app
run: |
cd /app/book
make mrproper && make website
- name: Upload website Artifacts - name: Upload website Artifacts
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with: