Skip to content
Snippets Groups Projects
Commit 8d12b224 authored by Erick Hitter's avatar Erick Hitter
Browse files

Merge branch 'fix/artifacts-path' into 'main'

Variable isn't evaluated, use common path

See merge request !6
parents 4ad4c9fd 2d7d554f
Branches
No related tags found
1 merge request!6Variable isn't evaluated, use common path
......@@ -28,10 +28,10 @@ dep:
@go get -v ./...
build: dep
@gox -output="${CI_PROJECT_DIR}/${CI_PROJECT_NAME}/{{.Dir}}_{{.OS}}_{{.Arch}}" -parallel=6 -osarch '!darwin/386'
@gox -output="${CI_PROJECT_DIR}/build/{{.Dir}}_{{.OS}}_{{.Arch}}" -parallel=6 -osarch '!darwin/386'
clean:
@rm -rf "${CI_PROJECT_DIR}/${CI_PROJECT_NAME}"
@rm -rf "${CI_PROJECT_DIR}/build/"
help:
@grep -h -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
......@@ -36,4 +36,4 @@ build:
- make
artifacts:
paths:
- $CI_PROJECT_NAME
- build
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment