Skip to content
This repository was archived by the owner on Dec 25, 2024. It is now read-only.

Commit 20f834d

Browse files
committed
fix: replace does not exist in docker
1 parent e5b4ccc commit 20f834d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ runs:
2323
- name: Sign kernel
2424
shell: bash
2525
run: |
26-
CONTAINER_ID=$(docker run --entrypoint /bin/bash --replace --name "${{ inputs.image }}" -dt "${{ inputs.image }}")
26+
CONTAINER_ID=$(docker run --entrypoint /bin/bash --name "${{ inputs.image }}" -dt "${{ inputs.image }}")
2727
docker cp "${{ github.action_path }}"/sign-kernel.sh "${{ inputs.image }}":/tmp/sign-kernel.sh
2828
docker cp "${{ github.action_path }}"/kernel_options.txt "${{ inputs.image }}":/tmp/kernel_options.txt
2929
docker exec -e PRIVKEY="${{ inputs.privkey }}" -e PUBKEY="${{ inputs.pubkey }}" "${{ inputs.image }}" "/tmp/sign-kernel.sh"

0 commit comments

Comments
 (0)