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
8 changes: 2 additions & 6 deletions .github/workflows/build_binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@ jobs:

steps:

#
#
#
# Initializes an SSH agent and loads the deployment key so that subsequent git
# operations (fetch/push) authenticate via SSH.
#
- name: Setup SSH
uses: webfactory/ssh-agent@v0.9.0
Expand All @@ -38,9 +37,6 @@ jobs:
ssh-key: ${{ secrets.WORKFLOW_DEPLOY_KEY }}
persist-credentials: false

- name: Test SSH auth
run: ssh -T git@github.com || true

- name: Set Up Go Environment
uses: actions/setup-go@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ func ReadArgs() Config {
info := flag.Bool("info", false,
"an info-level logging setter that enables info logs when set to 'true'")
stacktrace := flag.Bool("stacktrace", false,
"a stack trace setter that enables stack traces in error logs when set to 'true'123")
"a stack trace setter that enables stack traces in error logs when set to 'true'")

flag.Parse()

Expand Down
Loading