Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
tatums committed Mar 11, 2020
0 parents commit 666aae8
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM amazonlinux

RUN curl https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip -o awscliv2.zip && \
yum install unzip -y && \
unzip awscliv2.zip && \
./aws/install

ENTRYPOINT ["aws"]
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# AWS-CLI-Action
8 changes: 8 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: 'AWS cli'
description: 'runs the AWS cli'
outputs:
result:
description: 'true/false'
runs:
using: 'docker'
image: 'Dockerfile'

0 comments on commit 666aae8

Please sign in to comment.