llama90 commented on issue #38711: URL: https://github.com/apache/arrow/issues/38711#issuecomment-1810379262
Hello, It seems that the workflow file you're referring to, possibly [`github.linux.yml`](https://github.com/apache/arrow/blob/main/dev/tasks/docs/github.linux.yml), does not include a step for installing the AWS CLI. Here's a script that might work for adding such a step: ``` - name: Install AWS CLI run: | curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" unzip awscliv2.zip sudo ./aws/install ``` I'm curious if creating a PR and then leaving a comment like `@github-actions crossbow submit preview-docs` would execute the workflow based on the files in the PR. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
