File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,6 @@ action "publish" {
36
36
uses = " actions/npm@master"
37
37
runs = " script/publish"
38
38
env = {
39
- STATUS_CONTEXT = " npm publish primer"
39
+ PUBLISH_STATUS_CONTEXT = " npm publish primer"
40
40
}
41
41
}
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
set -e
3
3
4
- npx action-status --context=" $STATUS_CONTEXT " --state=success --description=" published $version " --url=" https://unpkg.com/$name @$version /"
4
+ npx action-status --context=" $PUBLISH_STATUS_CONTEXT " --state=success --description=" published $version " --url=" https://unpkg.com/$name @$version /"
5
5
6
6
file=publish-files.txt
7
7
if [[ -f $file ]]; then
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- npx action-status --context=" $STATUS_CONTEXT " --state=pending --description=" publishing $version ..."
3
+ npx action-status --context=" $PUBLISH_STATUS_CONTEXT " --state=pending --description=" publishing $version ..."
4
4
5
5
# generate the build directory
6
6
npm run dist
You can’t perform that action at this time.
0 commit comments