Skip to content

Commit 6ce606e

Browse files
fix: restore debug mode
1 parent 69583e0 commit 6ce606e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/actions/publish-docker/action.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,9 @@ runs:
106106
commands=$(cat << "EOF"
107107
USER root
108108
COPY ./git_debug_image.sh ./git_debug_image.sh
109-
RUN set -e; chmod u+x ./git_debug_image.sh; apt update && ./git_debug_image.sh ${{ inputs.branch_name }}; \
110-
rm -f ./git_debug_image.sh ; layer-cleanup.sh
109+
RUN set -e; chmod u+x ./git_debug_image.sh; apt update; ./git_debug_image.sh ${{ inputs.branch_name }}; \
110+
rm -f ./git_debug_image.sh ; \
111+
layer-cleanup.sh
111112
WORKDIR /home/user/rs-server
112113
EOF
113114
)

0 commit comments

Comments
 (0)