This repository was archived by the owner on May 30, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +27
-1
lines changed Expand file tree Collapse file tree 1 file changed +27
-1
lines changed Original file line number Diff line number Diff line change 10
10
steps :
11
11
-
12
12
uses : actions/checkout@v2
13
+ -
14
+ name : Start to publish
15
+ uses : chrnorm/deployment-status@releases/v1
16
+ with :
17
+ deployment_id : ${{ github.event.deployment.id }}
18
+ description : Start to publish docs.
19
+ state : " in_progress"
20
+ token : " ${{ github.token }}"
13
21
-
14
22
name : Create requirements.txt
15
23
uses : " finnp/create-file-action@master"
23
31
env :
24
32
GITHUB_TOKEN : ${{ secrets.DEPLOY_TOKEN }}
25
33
CUSTOM_DOMAIN : docs.gitploy.io
26
- REQUIREMENTS : requirements.txt
34
+ REQUIREMENTS : requirements.txt
35
+ -
36
+ name : Publish successfully
37
+ if : success()
38
+ uses : chrnorm/deployment-status@releases/v1
39
+ with :
40
+ deployment_id : ${{ github.event.deployment.id }}
41
+ description : Succeed to publish.
42
+ state : " success"
43
+ token : " ${{ github.token }}"
44
+ -
45
+ name : Publish failed
46
+ if : failure()
47
+ uses : chrnorm/deployment-status@releases/v1
48
+ with :
49
+ deployment_id : ${{ github.event.deployment.id }}
50
+ description : Failed to publish.
51
+ state : " failure"
52
+ token : " ${{ github.token }}"
You can’t perform that action at this time.
0 commit comments