File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -30,22 +30,26 @@ jobs:
30
30
run : npm ci
31
31
- name : Build App
32
32
env :
33
- ZE_SECRET_TOKEN : ${{ secrets.ZE_SECRET_TOKEN }} # Required Your User Auth Token
33
+ ZE_SECRET_TOKEN : ${{ secrets.ZE_SECRET_TOKEN }} # Required - Your User Auth Token
34
34
run : " <build command here>"
35
35
- name : Zephyr deploy summary
36
36
uses : ZephyrCloudIO/deploy-summary-action@v1
37
37
id : zephyr-summary
38
38
with :
39
- application_uid : <your_application_uid>
39
+ application_uid : <your_application_uid> # Required
40
+ github_token : {{ secrets.GITHUB_TOKEN }} # Optional
41
+ github_environment : <chosen_environment> # Optional
40
42
- name : Zephyr deploy summary
41
43
run : echo "Deployed to ${{ steps.zephyr.outputs.version_url }}"
42
44
` ` `
43
45
44
46
# Inputs
45
47
46
- | Name | Required | Description |
47
- | ----------------- | -------- | --------------------------------------------- |
48
- | ` application_uid` | true | The link where snapshot of build is deployed. |
48
+ | Name | Required | Description |
49
+ | -------------------- | -------- | -------------------------------------------------- |
50
+ | ` application_uid` | true | Unique identification for your Zephyr application. |
51
+ | `github_token` | false | Enables GitHub deployment creation. |
52
+ | `github_environment` | false | Specify to which GitHub environment to deploy. |
49
53
50
54
# Outputs
51
55
You can’t perform that action at this time.
0 commit comments