Skip to content

Commit

Permalink
Release v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hahwul committed Aug 23, 2023
1 parent e7de37b commit 989bc2f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ It is included by default with ZAP. However, it can also be used as the CLI. thi
### Github action
```yaml
- name: Zest CLI
uses: hahwul/zest-env@v1.1.0
uses: hahwul/zest-env@v1.1.1
with:
script: <YOUR-ZEST-SCRIPT>
flags: "-token 'id=secret' -token 'password=secret'"
Expand All @@ -36,27 +36,27 @@ It is included by default with ZAP. However, it can also be used as the CLI. thi
```
docker pull hahwul/zest-env
docker pull hahwul/zest-env:latest
docker pull hahwul/zest-env:v1.1.0
docker pull hahwul/zest-env:v1.1.1
```
![](https://user-images.githubusercontent.com/13212227/170864242-bebfa421-21cc-4f27-8077-230fdfe47202.png)
#### In Dockerfile
```dockerfile
FROM hahwul/zest-env:v1.1.0
FROM hahwul/zest-env:v1.1.1
# Add your Job
RUN /usr/bin/zest -script <FILENAME>
```

### Github Container Registry (GHCR)
#### In CLI
```
docker pull ghcr.io/hahwul/zest-env:v1.1.0
docker pull ghcr.io/hahwul/zest-env:v1.1.1
```
![](https://user-images.githubusercontent.com/13212227/170864338-f557b07c-9dc0-4500-84b4-13a86c5411da.png)

#### In Dockerfile
```dockerfile
FROM ghcr.io/hahwul/zest-env:v1.1.0
FROM ghcr.io/hahwul/zest-env:v1.1.1
# Add your Job
RUN /usr/bin/zest -script <FILENAME>
```
Expand Down
2 changes: 1 addition & 1 deletion github-action/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM ghcr.io/hahwul/zest-env:v1.1.0
FROM ghcr.io/hahwul/zest-env:v1.1.1
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]

0 comments on commit 989bc2f

Please sign in to comment.