Skip to content

Commit 381c372

Browse files
committed
ci: remove release dependency on build
1 parent a59a9eb commit 381c372

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.commitlintrc.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
{ "extends": ["@commitlint/config-conventional"] }
1+
{
2+
"extends": ["@commitlint/config-conventional"],
3+
"rules": {
4+
"footer-max-line-length": [0, "always", -1]
5+
}
6+
}

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ help:
2222
lint: build
2323
bin/run-lint
2424

25-
release: build
25+
release:
2626
bin/run-release
2727

2828
run: build

bin/run-release

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
function cd_to_root_directory () {
4-
cd `dirname ${0}`/../../
4+
cd `dirname ${0}`/../
55
}
66

77
function publish_semantic_release () {
@@ -27,4 +27,5 @@ function build_dist () {
2727

2828
cd_to_root_directory
2929

30+
build_dist
3031
publish_semantic_release

0 commit comments

Comments
 (0)