Simplify build process by moving to -ci image

Signed-off-by: baalajimaestro <me@baalajimaestro.me>
This commit is contained in:
baalajimaestro 2022-12-09 21:51:07 +05:30
parent 283573feda
commit cebdccbb42
Signed by: baalajimaestro
GPG key ID: F93C394FE9BBAFD5
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
#! /bin/sh
apt update && apt install python3 python3-pip git go -y
apt update && apt install python3 python3-pip -y
git config --global user.name baalajimaestro
git config --global user.email me@baalajimaestro.me
pip3 install GitPython

View file

@ -1,4 +1,4 @@
build-and-push:
stage: build
script:
- docker run -v $(pwd):/app -w /app --entrypoint="" -e BASE_REPO_TOKEN="$BASE_REPO_TOKEN" -e BASE_REPO_USERNAME="$BASE_REPO_USERNAME" -e CONTENT_REPO_GIT="$CONTENT_REPO_GIT" -e CONTENT_REPO_TOKEN="$CONTENT_REPO_TOKEN" -e CONTENT_REPO_USERNAME="$CONTENT_REPO_USERNAME" -e OUT_DIR="$OUT_DIR" klakegg/hugo:ext-debian sh .build.sh
- docker run -v $(pwd):/app -w /app -e BASE_REPO_TOKEN="$BASE_REPO_TOKEN" -e BASE_REPO_USERNAME="$BASE_REPO_USERNAME" -e CONTENT_REPO_GIT="$CONTENT_REPO_GIT" -e CONTENT_REPO_TOKEN="$CONTENT_REPO_TOKEN" -e CONTENT_REPO_USERNAME="$CONTENT_REPO_USERNAME" -e OUT_DIR="$OUT_DIR" klakegg/hugo:ext-debian-ci sh .build.sh