2022-04-13 15:31:36 +00:00
|
|
|
pipeline:
|
|
|
|
publish:
|
2023-03-14 22:15:26 +00:00
|
|
|
image: "plugins/docker"
|
2022-04-13 15:31:36 +00:00
|
|
|
settings:
|
2023-03-14 22:15:26 +00:00
|
|
|
registry: "registry.nulo.in"
|
|
|
|
username: "sutty"
|
|
|
|
repo: "registry.nulo.in/sutty/panel"
|
2022-04-13 15:31:36 +00:00
|
|
|
tags:
|
2023-03-14 22:15:26 +00:00
|
|
|
- "${ALPINE_VERSION}-${RUBY_VERSION}.${RUBY_PATCH}"
|
|
|
|
- "latest"
|
2022-04-13 15:31:36 +00:00
|
|
|
build_args:
|
2023-03-14 22:15:26 +00:00
|
|
|
- "RUBY_VERSION=${RUBY_VERSION}"
|
|
|
|
- "RUBY_PATCH=${RUBY_PATCH}"
|
|
|
|
- "ALPINE_VERSION=${ALPINE_VERSION}"
|
|
|
|
- "BASE_IMAGE=registry.nulo.in/sutty/rails"
|
2022-04-13 15:31:36 +00:00
|
|
|
purge: false
|
|
|
|
secrets:
|
2023-03-14 22:15:26 +00:00
|
|
|
- "docker_password"
|
2022-04-13 15:31:36 +00:00
|
|
|
when:
|
2022-04-13 15:37:13 +00:00
|
|
|
branch:
|
2023-03-14 22:15:26 +00:00
|
|
|
- "rails"
|
|
|
|
- "panel.sutty.nl"
|
|
|
|
event: "push"
|
2023-03-14 22:17:16 +00:00
|
|
|
path:
|
|
|
|
include:
|
|
|
|
- "Dockerfile"
|
|
|
|
- ".dockerignore"
|
2023-03-14 23:26:07 +00:00
|
|
|
assets:
|
|
|
|
image: "registry.nulo.in/sutty/panel:${ALPINE_VERSION}-${RUBY_VERSION}.${RUBY_PATCH}"
|
|
|
|
commands:
|
|
|
|
- "apk add python2 dotenv openssh-client"
|
2023-03-16 12:51:28 +00:00
|
|
|
- "install -d -m 700 ~/.ssh/"
|
|
|
|
- "echo \"$${KNOWN_HOSTS}\" | base64 -d >> ~/.ssh/known_hosts"
|
|
|
|
- "chmod 600 ~/.ssh/known_hosts"
|
2023-03-14 23:26:07 +00:00
|
|
|
- "eval $(ssh-agent -s)"
|
|
|
|
- "echo \"$${SSH_KEY}\" | base64 -d | ssh-add -"
|
2023-03-16 12:51:28 +00:00
|
|
|
- "ssh $${ORIGIN%:*}"
|
2023-03-14 23:26:07 +00:00
|
|
|
- "git config user.name Woodpecker"
|
|
|
|
- "git config user.email ci@sutty.coop.ar"
|
2023-03-15 14:23:35 +00:00
|
|
|
- "git remote add upstream $${ORIGIN}"
|
2023-03-14 23:26:07 +00:00
|
|
|
- "git checkout -B ${CI_COMMIT_BRANCH}"
|
2023-03-16 14:24:38 +00:00
|
|
|
- "mv config/credentials.yml.enc.ci config/credentials.yml.enc"
|
2023-03-14 23:26:07 +00:00
|
|
|
- "yarn"
|
|
|
|
- "cp .env.example .env"
|
|
|
|
- "dotenv bundle install --path=vendor"
|
2023-03-16 13:23:11 +00:00
|
|
|
- "dotenv RAILS_ENV=production bundle exec rails webpacker:clobber"
|
2023-03-16 13:18:42 +00:00
|
|
|
- "dotenv RAILS_ENV=production bundle exec rails assets:precompile"
|
|
|
|
- "dotenv RAILS_ENV=production bundle exec rails assets:clean"
|
2023-03-14 23:26:07 +00:00
|
|
|
- "git add public && git commit -m \"ci: assets [skip ci]\""
|
2023-03-15 14:23:35 +00:00
|
|
|
- "git push upstream ${CI_COMMIT_BRANCH}"
|
2023-03-14 23:26:07 +00:00
|
|
|
secrets:
|
|
|
|
- "SSH_KEY"
|
|
|
|
- "KNOWN_HOSTS"
|
|
|
|
- "ORIGIN"
|
|
|
|
when:
|
|
|
|
branch:
|
|
|
|
- "rails"
|
|
|
|
- "panel.sutty.nl"
|
|
|
|
path:
|
|
|
|
include:
|
|
|
|
- "app/assets/**/*"
|
|
|
|
- "app/javascript/**/*"
|
|
|
|
- "package.json"
|
|
|
|
- "yarn.lock"
|
2022-04-13 15:31:36 +00:00
|
|
|
matrix:
|
|
|
|
include:
|
2023-03-14 22:15:26 +00:00
|
|
|
- ALPINE_VERSION: "3.14.8"
|
|
|
|
RUBY_VERSION: "2.7"
|
|
|
|
RUBY_PATCH: "6"
|