@@ -15,13 +15,15 @@ Included actions:
15
15
16
16
## configuration / inputs
17
17
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 |
25
27
26
28
## examples
27
29
@@ -96,11 +98,10 @@ jobs:
96
98
container : smartive/semantic-release-image:latest
97
99
steps :
98
100
- name : checkout
99
- uses : actions/checkout@v2
101
+ uses : actions/checkout@v4
100
102
with :
101
103
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