Skip to content

Commit

Permalink
fix readme for actions
Browse files Browse the repository at this point in the history
  • Loading branch information
fujiwara committed Aug 9, 2024
1 parent 4bf9d77 commit 2935b27
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
### GitHub Actions
Action fujiwara/lambroll@v0 installs lambroll binary for Linux into /usr/local/bin. This action runs install only.
Action fujiwara/lambroll@v1 installs lambroll binary for Linux into /usr/local/bin. This action runs install only.
```yml
jobs:
Expand All @@ -82,12 +82,15 @@ jobs:
- uses: fujiwara/lambroll@v1
with:
version: v1.0.4
os: linux # linux or darwin (default: linux)
arch: amd64 # amd64 or arm64 (default: amd64)
- run: |
lambroll deploy
```
Note:
- `version` is not required, but it is recommended that the version be specified.
- The default version is not fixed and may change in the future.
- `os` and `arch` are automatically detected. (Some previous versions use `os` and `arch` as inputs, but they are deprecated.)

## Quick start

Try migrate your existing Lambda function `hello`.
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
inputs:
version:
description: "A version to install lamroll"
default: "v1.0.1"
description: "A version to install lambroll"
default: "v1.0.5"
runs:
using: "composite"
steps:
Expand Down

0 comments on commit 2935b27

Please sign in to comment.