Skip to content

Commit

Permalink
Suppress error logging when trying to create a symlink for Docker con…
Browse files Browse the repository at this point in the history
…tainer steps
  • Loading branch information
nikita-tkachenko-datadog committed Jul 15, 2024
1 parent 3571662 commit 4068dcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ runs:
run: |
mkdir -p $GITHUB_WORKSPACE/.datadog
if mkdir -p /github/workspace; then
if mkdir -p /github/workspace >/dev/null 2>&1; then
# See https://docs.github.com/en/actions/creating-actions/creating-a-docker-container-action#accessing-files-created-by-a-container-action
# When running a Docker container action, the Github workspace is available at a hard-coded path of /github/workspace
# When running a "regular", the workspace path varies.
Expand Down

0 comments on commit 4068dcc

Please sign in to comment.