Skip to content

Commit 79f1c21

Browse files
committed
fix(docs): + triggern new release
1 parent d567b9b commit 79f1c21

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

README.md

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,15 @@ Included actions:
1515

1616
## configuration / inputs
1717

18-
|key|description|default|required|
19-
|-|-|-|-|
20-
|checkout-deploy-key|""|""|no|
21-
|registry|container registry| ghcr.io |yes|
22-
|user|container registry user|${{ github.actor }}|yes|
23-
|token|container registry token|none|yes|
24-
|platforms|container target platforms|linux/amd64,linux/arm/v7,linux/arm64|no|
18+
| key | description | default | required |
19+
| ------------------- | ----------------------------------------------------------------- | ------------------------------------ | -------- |
20+
| context | build's context is the set of files located in the specified path | "." | no |
21+
| file | path to the Dockerfile | ./Dockerfile | no |
22+
| checkout-deploy-key | "" | "" | no |
23+
| registry | container registry | ghcr.io | yes |
24+
| user | container registry user | ${{ github.actor }} | yes |
25+
| token | container registry token | none | yes |
26+
| platforms | container target platforms | linux/amd64,linux/arm/v7,linux/arm64 | no |
2527

2628
## examples
2729

@@ -96,11 +98,10 @@ jobs:
9698
container: smartive/semantic-release-image:latest
9799
steps:
98100
- name: checkout
99-
uses: actions/checkout@v2
101+
uses: actions/checkout@v4
100102
with:
101103
ssh-key: "${{ secrets.COMMIT_KEY }}"
102-
- name: install semantic-release/github
103-
run: npm install semantic-release @semantic-release/github
104-
- name: semantic-release
105-
run: semantic-release
106-
```
104+
- name: Semantic Release
105+
uses: cycjimmy/semantic-release-action@v4
106+
env:
107+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)