We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 580640f commit 8842634Copy full SHA for 8842634
.github/workflows/dockerhub.yaml
@@ -52,9 +52,17 @@ jobs:
52
DOCKER_DELEGATION_KEY: ${{ secrets.DCT_DELEGATION_KEY }}
53
run: |
54
# Create a temporary file with the delegation key
55
- mkdir -p ~/.docker/trust/private
+ echo "0000"
56
+ mkdir -p /home/runner/.docker/
57
+ echo "aaaaa"
58
+ mkdir -p /home/runner/.docker/trust
59
+ echo "bbbb"
60
+ mkdir -p /home/runner/.docker/trust/private
61
+ echo "cccc"
62
echo "$DOCKER_DELEGATION_KEY" > "~/.docker/trust/private/${{secrets.DCT_DELEGATION_KEY_FILENAME}}"
63
+ echo "dddd"
64
chmod 600 "~/.docker/trust/private/${{secrets.DCT_DELEGATION_KEY_FILENAME}}"
65
+ echo "eeee"
66
67
# Build and push images using the script
68
- name: Build and push images
0 commit comments