31 lines
527 B
YAML
31 lines
527 B
YAML
|
|
name: Build container images
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
checkout:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: catthehacker/ubuntu:act-latest
|
|
steps:
|
|
- name: Check out the repo
|
|
uses: actions/checkout@v3
|
|
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: gitea.jbrumond.me/doc-utils/utils:0.2
|
|
needs:
|
|
- checkout
|
|
steps:
|
|
# - name: Build docs to webpage
|
|
# run: docs2website config.yaml
|
|
|
|
- name: List files
|
|
run: ls -l
|
|
# run: ls -l www
|