Skip to content

Commit dd51bf3

Browse files
committed
docs: 📝 update README
1 parent e70b785 commit dd51bf3

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

.github/README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Github Actions
2+
3+
## Test CI locally
4+
5+
```bash
6+
act \
7+
--secret AWS_ACCESS_KEY_ID \
8+
--secret AWS_SECRET_ACCESS_KEY \
9+
--secret AWS_REGION \
10+
--job auto-update
11+
```
12+
13+
## Test in forked repository
14+
15+
### Set secrets before running
16+
17+
```bash
18+
gh secret set AWS_ACCESS_KEY_ID --body "$AWS_ACCESS_KEY_ID";
19+
gh secret set AWS_SECRET_ACCESS_KEY --body "$AWS_SECRET_ACCESS_KEY";
20+
gh secret set AWS_REGION --body "$AWS_REGION";
21+
gh secret set DOCKER_USERNAME --body "$DOCKER_USERNAME";
22+
gh secret set DOCKER_PASSWORD --body "$DOCKER_PASSWORD";
23+
```

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
# docker-selenium-lambda
22

3+
![badge](https://github.com/umihico/docker-selenium-lambda/actions/workflows/auto-update.yml/badge.svg)
4+
35
This is minimum demo of headless chrome and selenium on container image on AWS Lambda
46

5-
This image goes with these versions. [These are automatically updated and tested everyday. ![CircleCI](https://circleci.com/gh/umihico/docker-selenium-lambda/tree/circleci.svg?style=svg)](https://circleci.com/gh/umihico/docker-selenium-lambda/tree/circleci)
7+
This image goes with these versions. [These are automatically updated and tested everyday.](https://github.com/umihico/docker-selenium-lambda/actions)
68

79
- Python 3.10.9
810
- chromium 111.0.5563.0
911
- chromedriver 111.0.5563.64
1012
- selenium 4.8.2
1113

12-
1314
## Running the demo
1415

1516
```bash

0 commit comments

Comments
 (0)