Skip to content

Commit

Permalink
ci(dockerd): fix symlink with dockerd bundle
Browse files Browse the repository at this point in the history
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
(cherry picked from commit e870da7)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
  • Loading branch information
crazy-max authored and thaJeztah committed Oct 20, 2022
1 parent 2e035f3 commit d5dc1a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dockerd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ jobs:
target: binary
outputs: /tmp/moby
-
# FIXME: remove symlink and rename bin. should be fixed upstream on moby.
name: Rename binary
if: steps.build.outputs.result == 'true'
run: |
rm /tmp/moby/binary-daemon/dockerd
mv /tmp/moby/binary-daemon/dockerd-dev /tmp/moby/binary-daemon/dockerd
if [ -L "/tmp/moby/binary-daemon/dockerd" ]; then
mv -f $(readlink /tmp/moby/binary-daemon/dockerd) /tmp/moby/binary-daemon/dockerd
fi
-
name: Download
if: steps.build.outputs.result != 'true'
Expand Down

0 comments on commit d5dc1a3

Please sign in to comment.