Add initial configuration files and Docker setup for Documize
Some checks failed
CI / ci (pull_request) Successful in 6s
Validate PR Title / validate (pull_request) Failing after 2s

This commit is contained in:
2026-01-04 21:11:40 +00:00
parent 295ac208f6
commit c66ea2b365
12 changed files with 234 additions and 6 deletions

View File

@@ -0,0 +1,17 @@
name: Build
on:
push:
branches: 'main'
jobs:
build:
name: GitHub Container Registry
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Login to GitHub Container Registry
run: echo ${{ secrets.PAT }} | docker login ghcr.io -u luketainton --password-stdin
- name: Build image for GitHub Container Registry
run: docker build . --file Dockerfile --tag ghcr.io/luketainton/documize:latest
- name: Push image to GitHub Container Registry
run: docker push ghcr.io/luketainton/documize:latest

5
.archive/.github/renovate.json vendored Normal file
View File

@@ -0,0 +1,5 @@
{
"extends": [
"config:base"
]
}