Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
helm3
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
helm3
Commits
eda39103
Commit
eda39103
authored
Oct 07, 2016
by
Adam Reese
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(ci): upload checksum with binary releases
closes #1214
parent
7b222cef
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
Makefile
Makefile
+9
-0
circle.yml
circle.yml
+2
-2
No files found.
Makefile
View file @
eda39103
...
...
@@ -36,6 +36,15 @@ dist:
$(DIST_DIRS)
zip
-r
helm-
${
VERSION
}
-
{}
.zip
{}
\;
\
)
.PHONY
:
checksum
checksum
:
(
\
cd
_dist
&&
\
for
f
in
./
*
.
{
tar.gz,zip
}
;
do
\
shasum
-a
256
"
$$
{f}"
|
awk
'{print $$1}'
>
"
$$
{f}.sha256"
;
\
done
\
)
.PHONY
:
check-docker
check-docker
:
@
if
[
-z
$$
(
which docker
)
]
;
then
\
...
...
circle.yml
View file @
eda39103
...
...
@@ -55,7 +55,7 @@ deployment:
# build canary helm binaries and push
-
make build-cross
-
make dist VERSION="${CIRCLE_TAG}"
-
make dist
checksum
VERSION="${CIRCLE_TAG}"
-
sudo /opt/google-cloud-sdk/bin/gsutil cp ./_dist/* "gs://${PROJECT_NAME}"
canary
:
...
...
@@ -74,5 +74,5 @@ deployment:
# build canary helm binaries and push
-
make build-cross
-
make dist VERSION=canary
-
make dist
checksum
VERSION=canary
-
sudo /opt/google-cloud-sdk/bin/gsutil cp ./_dist/* "gs://${PROJECT_NAME}"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment