Skip to content

Included Docker module in the DataLinux book #100

Included Docker module in the DataLinux book

Included Docker module in the DataLinux book #100

Workflow file for this run

---
name: publish
on:
push:
branches:
- main
permissions:
contents: write
pages: write
id-token: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build -t buildenv .
- name: Build the artifacts using the container
run: docker run --rm -v ${{ github.workspace }}:/app buildenv bash /app/lib/publish.sh
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload the gh-pages directory
path: 'gh-pages/'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4