Skip to content

Commit f5009be

Browse files
authored
ci: enable release automation (#1114)
1 parent d2d3926 commit f5009be

File tree

3 files changed

+3
-11
lines changed

3 files changed

+3
-11
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,6 @@ on:
99
branches:
1010
- '**'
1111
jobs:
12-
check-changelog:
13-
name: Changelog
14-
timeout-minutes: 5
15-
runs-on: ubuntu-18.04
16-
steps:
17-
- uses: actions/checkout@v2
18-
- uses: dangoslen/changelog-enforcer@v2
1912
check-build:
2013
name: Gradle Build
2114
timeout-minutes: 5

CHANGELOG.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Changelog
22

3-
# master
4-
53
# 2.0.0
64

75
### BREAKING CHANGES

release.config.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ async function config() {
2828
console.log(`Running on branch: ${branch}`);
2929

3030
// Set changelog file
31-
const changelogFile = `./changelogs/CHANGELOG_${branch}.md`;
31+
//const changelogFile = `./changelogs/CHANGELOG_${branch}.md`;
32+
const changelogFile = `./CHANGELOG.md`;
3233
console.log(`Changelog file output to: ${changelogFile}`);
3334

3435
// Load template file contents
@@ -46,7 +47,7 @@ async function config() {
4647
// { name: 'release-3', range: '3.x.x', channel: '3.x' },
4748
// { name: 'release-4', range: '4.x.x', channel: '4.x' },
4849
],
49-
dryRun: true,
50+
dryRun: false,
5051
debug: true,
5152
ci: true,
5253
tagFormat: '${version}',

0 commit comments

Comments
 (0)