33 lines
1.1 KiB
YAML
33 lines
1.1 KiB
YAML
name: Build webhook-deployer container
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
name: Build image
|
|
runs-on: ubuntu-latest
|
|
container: git.namesny.com/cluster/act-runner:v1@sha256:12ecb5835cd38f38bf9fc7589abc3751861bd737c612bb2a6194615810cb4f92
|
|
env:
|
|
IMAGE_NAME: kube-deployer
|
|
REGISTRY: git.namesny.com
|
|
REPO_OWNER: cluster
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
|
|
- name: Login to Registry
|
|
uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3
|
|
with:
|
|
registry: git.namesny.com
|
|
username: ${{ gitea.actor }}
|
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
|
- name: Build and push
|
|
run: |
|
|
set -a
|
|
. ./versions.env
|
|
set +a
|
|
docker build --build-arg=SOPS_VERSION=${SOPS_VERSION} \
|
|
--build-arg=KUSTOMIZE_SOPS_VERSION=${KUSTOMIZE_SOPS_VERSION} \
|
|
-t ${REGISTRY}/${REPO_OWNER}/${IMAGE_NAME}:latest .
|
|
docker push ${REGISTRY}/${REPO_OWNER}/${IMAGE_NAME}:latest |