Skip to content

Commit

Permalink
with quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Mirko-von-Leipzig committed Aug 29, 2024
1 parent 36901a1 commit 04c4b11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/ssm-send-command/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ runs:
COMMAND_ID=$(aws ssm send-command \
--instance-ids ${{ inputs.instance_id }} \
--document-name "AWS-RunShellScript" \
--parameters '{"commands":[${{ inputs.command }}]}' \
--parameters '{"commands":["${{ inputs.command }}"]}' \
--output text \
--query "Command.CommandId")
echo "command-id=$COMMAND_ID" >> $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_devnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
uses: ./.github/actions/ssm-send-command
with:
instance-id: ${{ env.instance-id }}
command: "echo 'hello there'"
command: "echo hello there"

- name: ssm failure
uses: ./.github/actions/ssm-send-command
Expand Down

0 comments on commit 04c4b11

Please sign in to comment.