Skip to content

Commit 0fcd04b

Browse files
committed
Adding secrets, and renaming env vars
1 parent 32b2b0b commit 0fcd04b

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

.github/workflows/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
PR_NUMBER: ${{ github.event.pull_request.number }}
2626
PR_URL: ${{ github.event.pull_request.html_url }}
2727
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
28-
JIRA_ASSIGNEE: ${{ secrets.ASSIGNEE_MONGOCLI_JIRA_TICKET }}
28+
JIRA_ASSIGNEE: ${{ secrets.ASSIGNEE_JIRA_TICKET }}
2929
run: |
3030
json_response=$(curl --request POST \
3131
--url 'https://jira.mongodb.org/rest/api/2/issue' \

build/ci/release.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,6 @@ functions:
8181
ARTIFACTORY_PASSWORD: ${artifactory_password}
8282
GRS_USERNAME: ${garasign_username}
8383
GRS_PASSWORD: ${garasign_password}
84-
GRS_USERNAME_MONGOCLI: ${garasign_username_mongocli}
85-
GRS_PASSWORD_MONGOCLI: ${garasign_password_mongocli}
8684
include_expansions_in_env:
8785
- go_base_path
8886
- workdir
@@ -304,8 +302,6 @@ tasks:
304302
ARTIFACTORY_PASSWORD: ${artifactory_password}
305303
GRS_USERNAME: ${garasign_username}
306304
GRS_PASSWORD: ${garasign_password}
307-
GRS_USERNAME_MONGOCLI: ${garasign_username_mongocli}
308-
GRS_PASSWORD_MONGOCLI: ${garasign_password_mongocli}
309305
- func: "rename pkg"
310306
vars:
311307
unstable: ${unstable}

build/package/linux_notarize.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ set -Eeou pipefail
2121
# goreleaser should already take care of calling this script as a part of a custom publisher.
2222

2323

24-
echo "GRS_CONFIG_USER1_USERNAME=${GRS_USERNAME_MONGOCLI}" >> "signing-envfile"
25-
echo "GRS_CONFIG_USER1_PASSWORD=${GRS_PASSWORD_MONGOCLI}" >> "signing-envfile"
24+
echo "GRS_CONFIG_USER1_USERNAME=${GRS_USERNAME}" >> "signing-envfile"
25+
echo "GRS_CONFIG_USER1_PASSWORD=${GRS_PASSWORD}" >> "signing-envfile"
2626

2727
if [[ -f "${artifact:?}" ]]; then
2828
echo "${ARTIFACTORY_PASSWORD}" | podman login --password-stdin --username "${ARTIFACTORY_USERNAME}" artifactory.corp.mongodb.com

0 commit comments

Comments
 (0)