cf41f2e Merge branch 'remove-push' into 'main' ef81c95 Remove unused commands 81c19cc Don't use remote common ea1e248 Update subtree add README 756cc8c Remove make-push a4b7e34 Squash subtree on pull 524c5be Fix PROJECT_NAME variable 47dea48 Add automated commit to chart-release git-subtree-dir: .gitlab git-subtree-split: cf41f2e7768da3a340b86debcddc949b588448c7
19 lines
636 B
Makefile
19 lines
636 B
Makefile
SHELL := /bin/bash
|
|
|
|
PROJECT_NAME ?= $(shell git config --local remote.origin.url | sed -n 's\#.*/\([^.]*\)\.git\#\1\#p')
|
|
VERSION ?= $(shell cat VERSION)
|
|
IMAGE ?= $(shell cat IMAGE):$(VERSION)
|
|
IMAGE_LATEST ?= $(shell cat IMAGE):latest
|
|
PWD ?= $(shell pwd)
|
|
STASH ?= "common-update-stash"
|
|
|
|
include .gitlab/make/docker.makefile
|
|
include .gitlab/make/helm.makefile
|
|
include .gitlab/make/kaniko.makefile
|
|
include .gitlab/make/truenas.makefile
|
|
include .gitlab/make/git.makefile
|
|
|
|
.PHONY: make-update
|
|
make-update:
|
|
@git subtree pull --prefix .gitlab --squash --message "Merge update from Common" -q git@gitlab.ducoterra.net:services/common.git main
|