Skip to content

Commit b485001

Browse files
fix: update pipeline.yml in line with JuliaGPU/buildkite
According to https://github.com/JuliaGPU/buildkite/blob/c34e33cbbbc36ec7d72496b2aea297cf3c35ddeb/image/hooks/environment#L5, the secrets will be decrypted and exported as new environment variables without prefix "SECRET_"
1 parent 7e8d489 commit b485001

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.buildkite/pipeline.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ steps:
7474
steps:
7575
- label: "Send comment"
7676
env:
77-
APP_ID: ${SECRET_APP_ID}
78-
INSTALLATION_ID: ${SECRET_INSTALL_ID}
79-
PEM_CONTENT_B64: ${SECRET_PRIVATE_KEY}
77+
APP_ID: ${APP_ID}
78+
INSTALLATION_ID: ${INSTALL_ID}
79+
PEM_CONTENT_B64: ${PRIVATE_KEY}
8080
# REPOSITORY and PR_ID are passed via "env"
8181
commands: |
8282
echo "Send comment to ${REPOSITORY}#${PR_ID}"

0 commit comments

Comments
 (0)