File tree 4 files changed +30
-7
lines changed
4 files changed +30
-7
lines changed Original file line number Diff line number Diff line change @@ -13,14 +13,32 @@ jobs:
13
13
steps :
14
14
- checkout
15
15
- setup_remote_docker
16
- - pack/install-pack
16
+ - pack/install-pack :
17
+ version : 0.16.0
17
18
- run : pack package-buildpack test --config << parameters.package-toml >>
18
19
20
+ shell-linting :
21
+ docker :
22
+ - image : koalaman/shellcheck-alpine:v0.7.1
23
+ steps :
24
+ - run : " apk add git"
25
+ # shfmt is currently (Jan 2021) only available in the edge community repository.
26
+ - run : " apk add shfmt --repository=http://dl-3.alpinelinux.org/alpine/edge/community"
27
+ - checkout
28
+ - run :
29
+ name : " shellcheck"
30
+ command : " shfmt -f . | grep -v ^test/ | xargs shellcheck"
31
+ - run :
32
+ name : " shfmt"
33
+ command : " shfmt -f . | grep -v ^test/ | xargs shfmt -d"
34
+
19
35
workflows :
20
36
version : 2
21
- package :
37
+ ci :
22
38
jobs :
39
+ - shell-linting
23
40
- package-buildpack :
24
41
matrix :
25
42
parameters :
26
- package-toml : [ "meta-buildpacks/nodejs/package.toml" ]
43
+ package-toml :
44
+ - " meta-buildpacks/nodejs/package.toml"
Original file line number Diff line number Diff line change 1
1
## main
2
2
3
+ # 0.1.1
3
4
* Initial release
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ api = "0.2"
2
2
3
3
[buildpack ]
4
4
id = " heroku/nodejs"
5
- version = " 0.1"
5
+ version = " 0.1.1 "
6
6
name = " Node.js"
7
7
8
8
[[order ]]
@@ -21,7 +21,7 @@ optional = true
21
21
22
22
[[order .group ]]
23
23
id = " heroku/procfile"
24
- version = " 0.6"
24
+ version = " 0.6.1 "
25
25
optional = true
26
26
27
27
[[order ]]
@@ -40,5 +40,8 @@ optional = true
40
40
41
41
[[order .group ]]
42
42
id = " heroku/procfile"
43
- version = " 0.6"
43
+ version = " 0.6.1 "
44
44
optional = true
45
+
46
+ [metadata .release .docker ]
47
+ repository =" public.ecr.aws/r2f9u0w4/heroku-nodejs-buildpack"
Original file line number Diff line number Diff line change @@ -14,4 +14,5 @@ uri = "https://github.com/heroku/nodejs-typescript-buildpack/releases/download/v
14
14
uri = " https://github.com/heroku/nodejs-npm-buildpack/releases/download/v0.4.0/nodejs-npm-buildpack-v0.4.0.tgz"
15
15
16
16
[[dependencies ]]
17
- uri = " https://github.com/heroku/procfile-cnb/releases/download/v0.6/procfile-cnb-v0.6.tgz"
17
+ # Should be urn:cnb:registry:heroku/[email protected] as soon as pack supports it. (0.16.1?)
18
+ uri = " docker://docker.io/heroku/procfile-cnb@sha256:74881b33e1e33eea38b419e667b0a99ac50e536727eeefd1b2eeb7ff3a937ffd"
You can’t perform that action at this time.
0 commit comments