-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Dmitry Denisenko <[email protected]>
- Loading branch information
Showing
2 changed files
with
10 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FROM registry.deckhouse.io/base_images/golang:1.23.1-bullseye@sha256:a24507d1a36fce86431198a979435dadb187e8d0ce0b5c181f46d6788d84a40f | ||
ARG PRIVATE_REPO_TOKEN | ||
ENV PRIVATE_REPO_TOKEN ${PRIVATE_REPO_TOKEN} | ||
RUN apt-get update && apt-get install -y apt-utils libbtrfs-dev file git gcc | ||
RUN sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d -b /usr/bin | ||
RUN git config --global url."https://gitlab-ci-token:[email protected]/".insteadOf https://fox.flant.com/ | ||
RUN git config --global --add safe.directory '*' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,4 @@ | ||
docker_image: registry.deckhouse.io/base_images/golang:1.23.1-bullseye@sha256:a24507d1a36fce86431198a979435dadb187e8d0ce0b5c181f46d6788d84a40f | ||
docker_image: golang-d8:1.23.1-local | ||
commands: | ||
- ./scripts/ci/release-build.sh | ||
- export $PRIVATE_REPO_TOKEN | ||
- env | ||
- git config --list | ||
- cat ~/.gitconfig | ||
- task -o group -p build:dist:all version={{ .Tag }} | ||
- cp -a ./dist/{{ .Tag }}/* /result |