mirror of
https://gitlab.com/Anson-Projects/projects.git
synced 2025-09-14 09:35:04 +00:00
- Remove test files: test-ghost-profile.md, test-local-deployment.sh, validate-ghost-extraction.sh, AGENTS.md - Restore .gitlab-ci.yml to original state without debugging changes - Restore _quarto.yml to original format without ghost profiles - Remove ghost-iframe.css styling file - Restore ghost-upload/.gitlab-ci.yml to original state without force-update job - Simplify Rust code by removing force update functionality and content extraction - Restore README.md to original state Keeps core bug fixes: fixed get_slug() and proper Ghost API duplicate checking
37 lines
767 B
YAML
37 lines
767 B
YAML
build:
|
|
stage: build
|
|
image:
|
|
name: gcr.io/kaniko-project/executor:v1.23.2-debug
|
|
entrypoint: [""]
|
|
script:
|
|
- /kaniko/executor
|
|
--context "${CI_PROJECT_DIR}"
|
|
--dockerfile "${CI_PROJECT_DIR}/Dockerfile"
|
|
--destination "${CI_REGISTRY_IMAGE}:${CI_COMMIT_BRANCH}"
|
|
--cleanup
|
|
|
|
staging:
|
|
stage: deploy
|
|
image: ${CI_REGISTRY_IMAGE}:${CI_COMMIT_BRANCH}
|
|
script:
|
|
- echo "Building the project with Quarto..."
|
|
- quarto render --to html --output-dir public
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
|
|
pages:
|
|
stage: deploy
|
|
script:
|
|
- echo "Publishing site..."
|
|
needs:
|
|
- staging
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
rules:
|
|
- if: "$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH"
|
|
|
|
include:
|
|
- local: ghost-upload/.gitlab-ci.yml
|