Compare commits

...

10 Commits

2 changed files with 10 additions and 1 deletions
+7
View File
@@ -8,6 +8,8 @@ on:
jobs: jobs:
generate: generate:
runs-on: ubuntu-latest runs-on: ubuntu-latest
env:
DOCKER_HOST: tcp://docker-socket-proxy:2375
steps: steps:
- name: Checkout - name: Checkout
@@ -15,6 +17,11 @@ jobs:
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Install docker CLI
run: |
apt-get update
apt-get install -y docker.io docker-compose
- name: Generate docs - name: Generate docs
run: | run: |
scripts/docs/generate-all.sh scripts/docs/generate-all.sh
+3 -1
View File
@@ -3,7 +3,9 @@ name: Validate Docs (Gitea)
on: on:
push: push:
branches: [ main ] branches: [ main ]
paths:
- "docs/**"
jobs: jobs:
validate: validate:
runs-on: ubuntu-latest runs-on: ubuntu-latest