Skip to content

Commit a91ba97

Browse files
committed
Propagate secrets to mongo helper in beta action.
1 parent 222a313 commit a91ba97

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/beta.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,8 @@ jobs:
3232
files: |
3333
build/distributions/sdkman-cli-*.zip
3434
- name: Update MongoDB
35-
run: bin/release-binary.sh master ${{ steps.var.outputs.sha_short }} $MONGO_URL $MONGO_USERNAME $MONGO_PASSWORD
35+
env:
36+
MONGO_URL: ${{ secrets.MONGO_URL }}
37+
MONGO_USERNAME: ${{ secrets.MONGO_USERNAME }}
38+
MONGO_PASSWORD: ${{ secrets.MONGO_PASSWORD }}
39+
run: bin/release-binary.sh master ${{ steps.var.outputs.sha_short }} "$MONGO_URL" "$MONGO_USERNAME" "$MONGO_PASSWORD"

0 commit comments

Comments
 (0)