feat: add docs website
This commit is contained in:
parent
f0ec2e4942
commit
576125d377
1 changed files with 683 additions and 3 deletions
8
Justfile
8
Justfile
|
|
@ -3,4 +3,10 @@ image OS ARCH:
|
|||
docker buildx build --progress plain --build-arg ARCH={{ARCH}} --build-arg GITHUB_PAT="$GITHUB_PAT" --build-arg RED_HAT_DEV_PW="$RED_HAT_DEV_PW" --platform linux/{{ARCH}} -f docker/Containerfile-{{OS}} -t devxygmbh/{{ARCH}}-binaries-r-{{OS}}:latest --push .; \
|
||||
else \
|
||||
docker buildx build --progress plain --build-arg GITHUB_PAT="$GITHUB_PAT" --build-arg ARCH={{ARCH}} -f docker/Containerfile-{{OS}} --platform linux/{{ARCH}} -t devxygmbh/{{ARCH}}-binaries-r-{{OS}}:latest --push .; \
|
||||
fi
|
||||
fi
|
||||
|
||||
preview-docs:
|
||||
cd docs && quarto preview
|
||||
|
||||
publish-docs:
|
||||
cd docs && quarto render && rclone sync ./_site hetzner-s3://devxy-r-package-binaries-docs
|
||||
Loading…
Reference in a new issue