-
Notifications
You must be signed in to change notification settings - Fork 86
Fix publish adding NOTARY_KEY_NAME #106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -64,42 +64,6 @@ functions: | |||
env: | |||
<<: *go_options | |||
command: make package | |||
"set up remote credentials": |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't need this
@@ -109,21 +73,21 @@ functions: | |||
set -o errexit | |||
|
|||
cat <<EOF > notary_env.sh | |||
export NOTARY_KEY_NAME='server-4.4' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we were missing this
if [[ ! -f signing_auth_token_44 ]]; then | ||
echo "${signing_auth_token_44}" > signing_auth_token | ||
fi | ||
echo "${signing_auth_token_44}" > ./signing_auth_token |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
simplifying this
--service ${barque_url} \ | ||
--config .repo_config.yml \ | ||
--config etc/repo_config.yml \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hiding this away
@@ -155,23 +122,18 @@ tasks: | |||
- func: "gen-notices" | |||
- func: "fetch goreleaser" | |||
- func: "package" | |||
- command: shell.exec | |||
- command: archive.targz_pack |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
curator is happier with tar.gz
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
from what I can tell, looks like a nice improvement 👍
Proposed changes
We were missing an ENV variable, also this removes some unnecessary steps