diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5f0c3b6b4..bd7addf80 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -294,7 +294,7 @@ jobs: - name: yarn install run: yarn install - name: generate changelog - run: yarn auto-changelog + run: yarn auto-changelog --latest-version ${{ env.VERSION }} - name: package-version-to-git-release continue-on-error: true # Will fail if tag exists id: create_release diff --git a/CHANGELOG.md b/CHANGELOG.md index 977309d3f..3825d0252 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +#### [0.6.4](https://github.com/Ocelot-Social-Community/Ocelot-Social/compare/0.6.3...0.6.4) + +> 8 February 2021 + +- regenerated `CHANGELOG.md` [`ee688ec`](https://github.com/Ocelot-Social-Community/Ocelot-Social/commit/ee688ece24cf592b3989e83340701ca8772e876e) +- fetch full history [`5ecee4d`](https://github.com/Ocelot-Social-Community/Ocelot-Social/commit/5ecee4d73a92d2e5c5ae971d79848ed27f65a72c) +- don't fail if tag exists (release) [`39c82fc`](https://github.com/Ocelot-Social-Community/Ocelot-Social/commit/39c82fcb37d5c8e7e78a79288e1ef6280f8d0892) + #### [0.6.3](https://github.com/Ocelot-Social-Community/Ocelot-Social/compare/0.6.0...0.6.3) > 8 February 2021 diff --git a/package.json b/package.json index 9c8050d3e..5f25ad8fe 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ "cypress:open": "cross-env cypress open --browser firefox", "cucumber:setup": "cd backend && yarn run dev", "cucumber": "wait-on tcp:4000 && cucumber-js --require-module @babel/register --exit", - "release": "yarn version --no-git-tag-version --no-commit-hooks --no-commit && auto-changelog && cd backend && yarn version --no-git-tag-version --no-commit-hooks --no-commit --new-version $(node -p -e \"require('./../package.json').version\") && cd ../webapp && yarn version --no-git-tag-version --no-commit-hooks --no-commit --new-version $(node -p -e \"require('./../package.json').version\")" + "release": "yarn version --no-git-tag-version --no-commit-hooks --no-commit && auto-changelog --latest-version $(node -p -e \"require('./package.json').version\") && cd backend && yarn version --no-git-tag-version --no-commit-hooks --no-commit --new-version $(node -p -e \"require('./../package.json').version\") && cd ../webapp && yarn version --no-git-tag-version --no-commit-hooks --no-commit --new-version $(node -p -e \"require('./../package.json').version\")" }, "devDependencies": { "@babel/core": "^7.9.0",