Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
DRY_RUN: ${{ inputs.dryRun || 'false' }}
CHANGELOG_ENTRY: ${{ inputs.changeLog }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
HOMEBREW_GH_TOKEN: ${{ toJSON(secrets.LAUNCHDARKLY_HOMEBREW_TAP_DEPLOY_KEY) }}
HOMEBREW_GH_TOKEN: ${{ secrets.LAUNCHDARKLY_HOMEBREW_TAP_DEPLOY_KEY }}
ARTIFACT_DIRECTORY: "/tmp/release-artifacts"
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion scripts/release/stage-artifacts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ stage_artifacts() (
# write homebrew key to temporary file for Goreleaser
if [[ -n "${HOMEBREW_GH_TOKEN:-}" ]]; then
HOMEBREW_KEY_PATH="/tmp/homebrew-tap-deploy-key"
echo "$HOMEBREW_GH_TOKEN" > "$HOMEBREW_KEY_PATH"
printf '%s\n' "$HOMEBREW_GH_TOKEN" > "$HOMEBREW_KEY_PATH"
chmod 600 "$HOMEBREW_KEY_PATH"
export HOMEBREW_KEY_PATH
fi
Expand Down
Loading