mirror of
https://mau.dev/andreijiroh-dev/website.git
synced 2024-11-22 00:13:40 +00:00
chore(global): some CI script fix for Gemini deployments
Also added some scripts to Pipfile and minimal update to FAQ page. Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.eu.org>
This commit is contained in:
parent
beb0d74b0d
commit
c88c2e5519
5 changed files with 32 additions and 6 deletions
|
@ -3,6 +3,7 @@ image:
|
||||||
name: quay.io/ajhalili2006/mkdocs-material-build-ci:nightly
|
name: quay.io/ajhalili2006/mkdocs-material-build-ci:nightly
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
|
- test
|
||||||
- build
|
- build
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
@ -10,16 +11,18 @@ default:
|
||||||
- amd64 # currently, we only the image in amd64 right now.
|
- amd64 # currently, we only the image in amd64 right now.
|
||||||
# Functions that should be executed before the build script is run
|
# Functions that should be executed before the build script is run
|
||||||
before_script:
|
before_script:
|
||||||
- pipenv install
|
- pipenv sync --verbose
|
||||||
- npm ci
|
- npm ci
|
||||||
- curl --silent "https://gitlab.com/gitlab-org/incubation-engineering/mobile-devops/download-secure-files/-/raw/main/installer" | bash
|
- curl --silent "https://gitlab.com/gitlab-org/incubation-engineering/mobile-devops/download-secure-files/-/raw/main/installer" | bash
|
||||||
|
|
||||||
# Global builds and stuff
|
# Global builds and stuff
|
||||||
variables:
|
variables:
|
||||||
DEBUG: "1"
|
DEBUG: "1" # MAY HORRIBLY LEAK SECRETS, PROCEED WITH CAUTION
|
||||||
FF_ENABLE_COMMIT_DATA: "true"
|
FF_ENABLE_COMMIT_DATA: "true"
|
||||||
FF_GENERATE_SOCIAL_CARDS: "true"
|
FF_GENERATE_SOCIAL_CARDS: "true"
|
||||||
SECURE_FILES_DOWNLOAD_PATH: /run/secrets
|
SECURE_FILES_DOWNLOAD_PATH: /run/secrets
|
||||||
GIT_DEPTH: "0"
|
GIT_DEPTH: "0"
|
||||||
|
PIPENV_SYSTEM: "true" # do system pip management since we're inside containers
|
||||||
|
|
||||||
pages:
|
pages:
|
||||||
stage: build
|
stage: build
|
||||||
|
@ -40,7 +43,6 @@ pages:srht:
|
||||||
needs:
|
needs:
|
||||||
- pages
|
- pages
|
||||||
script:
|
script:
|
||||||
- tar -C gmi -cvz . -f site.tar.gz
|
|
||||||
- doppler run -- ./bin/deploykit-gmi.sh
|
- doppler run -- ./bin/deploykit-gmi.sh
|
||||||
rules:
|
rules:
|
||||||
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
|
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
|
||||||
|
|
6
Pipfile
6
Pipfile
|
@ -18,3 +18,9 @@ mkdocs-autolinks-plugin = "*"
|
||||||
|
|
||||||
[requires]
|
[requires]
|
||||||
python_version = "3.11"
|
python_version = "3.11"
|
||||||
|
|
||||||
|
[scripts]
|
||||||
|
dev = "mkdocs serve --watch overrides --watch-theme --livereload"
|
||||||
|
build = "mkdocs build"
|
||||||
|
build-staging = "mkdocs build -f mkdocs.readthedocs.yml"
|
||||||
|
build-tilde = "mkdocs build -f mkdocs.tilde.yml"
|
||||||
|
|
|
@ -11,7 +11,7 @@ fi
|
||||||
|
|
||||||
mkdir "gmi/api"
|
mkdir "gmi/api"
|
||||||
git rev-parse HEAD > "gmi/api/commit"
|
git rev-parse HEAD > "gmi/api/commit"
|
||||||
tar -C gmi -cvz . -f site.tar.gz
|
tar -C gmi -cvz . -f gemini-site.tar.gz
|
||||||
|
|
||||||
curl --oauth2-bearer "$SOURCEHUT_PAGES_TOKEN" \
|
curl --oauth2-bearer "$SOURCEHUT_PAGES_TOKEN" \
|
||||||
-Fcontent=@site.tar.gz \
|
-Fcontent=@site.tar.gz \
|
||||||
|
|
15
bin/setup-remotes.sh
Normal file
15
bin/setup-remotes.sh
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# URL prefixes for updating remote URLs
|
||||||
|
JETBRAINS_SPACE_REPO="git.jetbrains.space/ajhalili2006/web/andreijiroh.dev.git"
|
||||||
|
SOURCEHUT_GIT_REPO="git.sr.ht/~ajhalili2006/web"
|
||||||
|
GITHUB_REPO="github.com/ajhalili2006/ajhalili2006.github.io"
|
||||||
|
GITLAB_REPO="mau.dev/andreijiroh.dev/website"
|
||||||
|
|
||||||
|
useHttps() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
useSsh() {
|
||||||
|
|
||||||
|
}
|
|
@ -1,3 +1,6 @@
|
||||||
# Frequently Asked Questions
|
# Frequently Asked Questions
|
||||||
|
|
||||||
Working on it soon.
|
_Last updated: 2023-10-TBD_
|
||||||
|
|
||||||
|
!!! warning "To be worked on soon"
|
||||||
|
I'll be compiling some answers to frequently asked questions about me in the future.
|
||||||
|
|
Loading…
Reference in a new issue