From acbf352f98865ee5ec3d3e4e19352547b2f84056 Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Sun, 10 Oct 2021 18:56:42 +0200 Subject: [PATCH 1/3] enable release automation --- release.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release.config.js b/release.config.js index 3e54eca7a..bf74da83d 100644 --- a/release.config.js +++ b/release.config.js @@ -46,7 +46,7 @@ async function config() { // { name: 'release-3', range: '3.x.x', channel: '3.x' }, // { name: 'release-4', range: '4.x.x', channel: '4.x' }, ], - dryRun: true, + dryRun: false, debug: true, ci: true, tagFormat: '${version}', From 32a9d2406c568699ce638e2874afb454978289ba Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Sun, 10 Oct 2021 20:17:11 +0200 Subject: [PATCH 2/3] remove changelog enforcer --- .github/workflows/ci.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e6e50e888..83a8e8b87 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,13 +9,6 @@ on: branches: - '**' jobs: - check-changelog: - name: Changelog - timeout-minutes: 5 - runs-on: ubuntu-18.04 - steps: - - uses: actions/checkout@v2 - - uses: dangoslen/changelog-enforcer@v2 check-build: name: Gradle Build timeout-minutes: 5 From 8d6151d56fd3ee3a91cd7eec44d7ac7b52127e0a Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Sun, 10 Oct 2021 21:24:53 +0200 Subject: [PATCH 3/3] update changelog file path --- CHANGELOG.md | 2 -- release.config.js | 3 ++- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f2480dd6e..4a17c3469 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,5 @@ # Changelog -# master - # 2.0.0 ### BREAKING CHANGES diff --git a/release.config.js b/release.config.js index bf74da83d..9ae1a768b 100644 --- a/release.config.js +++ b/release.config.js @@ -28,7 +28,8 @@ async function config() { console.log(`Running on branch: ${branch}`); // Set changelog file - const changelogFile = `./changelogs/CHANGELOG_${branch}.md`; + //const changelogFile = `./changelogs/CHANGELOG_${branch}.md`; + const changelogFile = `./CHANGELOG.md`; console.log(`Changelog file output to: ${changelogFile}`); // Load template file contents