Skip to content

Commit 99bd136

Browse files
committed
npm init
1 parent 4ff7a51 commit 99bd136

File tree

6 files changed

+8
-17
lines changed

6 files changed

+8
-17
lines changed

.github/workflows/version2016.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
name: versions:2016.0
44

55
on:
6-
push:
7-
branches:
8-
- 'main'
96
workflow_dispatch:
107
schedule:
118
# * is a special character in YAML so you have to quote this string 1:00 weekly,Wednesday,1:00 #m h d/m m d/w

.github/workflows/version2018.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
name: versions:2018.0
44

55
on:
6-
push:
7-
branches:
8-
- 'main'
96
workflow_dispatch:
107
schedule:
118
# * is a special character in YAML so you have to quote this string 1:00 weekly,Thursday,1:00 #m h d/m m d/w

.github/workflows/version2020.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
name: versions:2020.0
44

55
on:
6-
push:
7-
branches:
8-
- 'main'
96
workflow_dispatch:
107
schedule:
118
# * is a special character in YAML so you have to quote this string 1:00 weekly,Friday,1:00 #m h d/m m d/w

.github/workflows/version2022.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
name: versions:2022.0
44

55
on:
6-
push:
7-
branches:
8-
- 'main'
96
workflow_dispatch:
107
schedule:
118
# * is a special character in YAML so you have to quote this string 1:00 weekly,Saturday,1:00 #m h d/m m d/w

.github/workflows/version2024.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
name: versions:2024.0
44

55
on:
6-
push:
7-
branches:
8-
- 'main'
96
workflow_dispatch:
107
schedule:
118
# * is a special character in YAML so you have to quote this string 1:00 weekly,Saturday,1:00 #m h d/m m d/w

Dockerfile24

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,14 @@ RUN npm install -g freeze-deps
4646
## npm set init.author.name "example_user"
4747
## npm config set init.author.url http://iamsim.me/
4848

49-
RUN npm set init.version "${CRE_VERSION}.0"
50-
RUN npm set init.license "Apache-2.0"
49+
#RUN npm set init.version "${CRE_VERSION}.0"
50+
#RUN npm set init.license "Apache-2.0"
51+
52+
RUN npm config set init-version "${CRE_VERSION}.0"
53+
RUN npm config set init-license "Apache-2.0"
54+
RUN npm config set init-author-name "kmicha"
55+
RUN npm config set init-author-email "[email protected]"
56+
RUN npm config set init-author-url "https://github.com/creDocker/creInstall"
5157

5258
# npm set init.author.email "[email protected]"
5359
# npm set init.author.name "example_user"

0 commit comments

Comments
 (0)