Skip to content

Commit a6097da

Browse files
committed
fix: update home url for action
1 parent 252d491 commit a6097da

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ LABEL "com.github.actions.description"="Workman For Egg.js"
55
LABEL "com.github.actions.icon"="settings"
66
LABEL "com.github.actions.color"="white"
77

8-
LABEL "repository"="https://github.com/thonatos/actions"
9-
LABEL "homepage"="https://github.com/thonatos/actions"
10-
LABEL "maintainer"="Thonatos Yang <thonatos.yang@gmail.com>"
8+
LABEL "repository"="https://github.com/thonatos/github-actions-workman"
9+
LABEL "homepage"="https://github.com/thonatos/github-actions-workman"
10+
LABEL "maintainer"="Suyi <thonatos.yang@gmail.com>"
1111

1212
RUN npm i -g github-actions-workman
1313

entrypoint.sh

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
#!/bin/sh
22
set -e
33

4-
# add npm config
4+
# env
5+
sh -c "env";
6+
7+
# event.json
8+
if [ -n "$GITHUB_EVENT_PATH" ]; then
9+
cat "$GITHUB_EVENT_PATH";
10+
fi
11+
12+
# npm
513
if [ -n "$NPM_TOKEN" ]; then
614
echo "# add npm config";
715

0 commit comments

Comments
 (0)