Skip to content

Commit

Permalink
Update commands for execution quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
sshrihar committed Aug 30, 2024
1 parent 4694105 commit 8d4254d
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_execute/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ runs:
--instance-ids ${{ inputs.instance_id }} \
--document-name "AWS-RunShellScript" \
--parameters '{"commands":[
"${{ inputs.command }}"
${{ inputs.command }}
]}' \
--output text \
--query "Command.CommandId")
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
uses: ./.github/actions/ssm_execute
with:
instance_id: ${{ secrets[inputs.instance_id] }}
command: uname -m
command: "uname -m"

- name: Determine architecture
run: |
Expand Down

0 comments on commit 8d4254d

Please sign in to comment.