From 13d7f994659ad2ca32fd7240f007ff14102ca6e2 Mon Sep 17 00:00:00 2001 From: Mikel Larreategi Date: Thu, 28 Oct 2021 10:43:38 +0200 Subject: [PATCH 01/24] autorelease config --- .github/workflows/release.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..f14cf02 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,18 @@ +name: Node.js Package +on: + release: + types: [created] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + # Setup .npmrc file to publish to npm + - uses: actions/setup-node@v2 + with: + node-version: "12.x" + registry-url: "https://registry.npmjs.org" + - run: npm install + - run: npm publish + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} From 787413a581b00adecf9a5afee1e815218f1baba4 Mon Sep 17 00:00:00 2001 From: Mikel Larreategi Date: Thu, 28 Oct 2021 15:56:25 +0200 Subject: [PATCH 02/24] release-it config --- .github/workflows/release.yml | 23 ++++++++++++----------- .release-it.json | 22 ++++++++++++++++++++++ package.json | 11 +++++++++-- 3 files changed, 43 insertions(+), 13 deletions(-) create mode 100644 .release-it.json diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f14cf02..80b28f8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,18 +1,19 @@ -name: Node.js Package -on: - release: - types: [created] jobs: - build: + release: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - # Setup .npmrc file to publish to npm - - uses: actions/setup-node@v2 with: - node-version: "12.x" - registry-url: "https://registry.npmjs.org" + fetch-depth: 0 + - name: git config + run: | + git config user.name "${GITHUB_ACTOR}" + git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" - run: npm install - - run: npm publish + - run: npm run release env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + deploy: + script: + - echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc + - npm run release diff --git a/.release-it.json b/.release-it.json new file mode 100644 index 0000000..1bbf10f --- /dev/null +++ b/.release-it.json @@ -0,0 +1,22 @@ +{ + "npm": { + "publish": false + }, + "git": { + "changelog": "npx auto-changelog --stdout --commit-limit false -u --template https://github.com/raw/release-it/release-it/master/templates/changelog-compact.hbs", + "tagName": "${version}", + "commitMessage": "Automated release ${version}", + "requireBranch": "develop", + "requireCleanWorkingDir": false, + "git.requireCommits": true + }, + "github": { + "release": true, + "releaseName": "${version}", + "releaseNotes": "npx auto-changelog --stdout --commit-limit false -u --template https://github.com/raw/release-it/release-it/master/templates/changelog-compact.hbs" + }, + + "hooks": { + "after:bump": "npx auto-changelog --commit-limit false -p" + } +} diff --git a/package.json b/package.json index 32da33e..3551958 100644 --- a/package.json +++ b/package.json @@ -11,5 +11,12 @@ "volto", "plone", "react" - ] -} \ No newline at end of file + ], + "scripts": { + "release": "release-it" + }, + "repository": { + "type": "git", + "url": "git@github.com:codesyntax/volto-listingadvanced-variation" + } +} From 22c384e34f7776e70f443edbf324e0a7a709acc7 Mon Sep 17 00:00:00 2001 From: Mikel Larreategi Date: Thu, 28 Oct 2021 16:02:32 +0200 Subject: [PATCH 03/24] readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 8412508..684ece5 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # volto-listingadvanced-variation Volto addon to add an additional variation to the default listing block with advanced features + +Auto From d0ba2097cb2c625c27c23a03ba4d8a7e6f3904e3 Mon Sep 17 00:00:00 2001 From: Mikel Larreategi Date: Thu, 28 Oct 2021 16:06:11 +0200 Subject: [PATCH 04/24] rel --- .github/workflows/release.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 80b28f8..19cb4a2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,20 @@ jobs: - run: npm run release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + push: + branches: + - main + pull_request: + branches: + - main deploy: script: - echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc - npm run release + + push: + branches: + - main + pull_request: + branches: + - main From 59954b94e9dcaeffd137cee9cab6a30032469ac7 Mon Sep 17 00:00:00 2001 From: Mikel Larreategi Date: Thu, 28 Oct 2021 16:10:10 +0200 Subject: [PATCH 05/24] reale --- .github/workflows/release.yml | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 19cb4a2..2da06a9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,20 +13,12 @@ jobs: - run: npm run release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - push: - branches: - - main - pull_request: - branches: - - main deploy: script: - echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc - npm run release - push: - branches: - - main - pull_request: - branches: - - main +on: + pull_request: + branches: + - main From 3ca99c9db7689f2c0629298ef871740c666faeb0 Mon Sep 17 00:00:00 2001 From: Mikel Larreategi Date: Thu, 28 Oct 2021 16:13:54 +0200 Subject: [PATCH 06/24] release! --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2da06a9..066e8af 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,3 +22,6 @@ on: pull_request: branches: - main + steps: + - release + - deploy From 4d9249959c481a05f2c3d6675b97e179b2632d27 Mon Sep 17 00:00:00 2001 From: Mikel Larreategi Date: Thu, 28 Oct 2021 16:18:16 +0200 Subject: [PATCH 07/24] reowkr --- .github/workflows/release.yml | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 066e8af..3e9c166 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,6 +1,13 @@ +on: + pull_request: + branches: + - main + types: [closed] + jobs: release: runs-on: ubuntu-latest + if: github.event.pull_request.merged == true steps: - uses: actions/checkout@v2 with: @@ -11,17 +18,8 @@ jobs: git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" - run: npm install - run: npm run release - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - deploy: - script: - - echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc - - npm run release + - run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc + - run: npm run release -on: - pull_request: - branches: - - main - steps: - - release - - deploy + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 35886f7143486776e8cb3a68b31f9a7b9b0102aa Mon Sep 17 00:00:00 2001 From: Mikel Larreategi Date: Thu, 28 Oct 2021 16:21:25 +0200 Subject: [PATCH 08/24] reowkr --- .github/workflows/release.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3e9c166..4ba4def 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,9 +17,8 @@ jobs: git config user.name "${GITHUB_ACTOR}" git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" - run: npm install + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: npm run release - run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc - run: npm run release - - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 903e218154ec618ecc316b68dfc4b791d35cf584 Mon Sep 17 00:00:00 2001 From: Mikel Larreategi Date: Thu, 28 Oct 2021 16:23:54 +0200 Subject: [PATCH 09/24] install release-it --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4ba4def..cee635b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,6 +19,7 @@ jobs: - run: npm install env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - run: npm install release-it - run: npm run release - run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc - run: npm run release From 8bd53a087867caa9df5a4c24bd8e2ef794346d9b Mon Sep 17 00:00:00 2001 From: Mikel Larreategi Date: Thu, 28 Oct 2021 16:25:36 +0200 Subject: [PATCH 10/24] releases when in master --- .release-it.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.release-it.json b/.release-it.json index 1bbf10f..29a8a27 100644 --- a/.release-it.json +++ b/.release-it.json @@ -6,7 +6,7 @@ "changelog": "npx auto-changelog --stdout --commit-limit false -u --template https://github.com/raw/release-it/release-it/master/templates/changelog-compact.hbs", "tagName": "${version}", "commitMessage": "Automated release ${version}", - "requireBranch": "develop", + "requireBranch": "master", "requireCleanWorkingDir": false, "git.requireCommits": true }, From f40fa9eee229fdefa51525d0d4f397a14e2ef804 Mon Sep 17 00:00:00 2001 From: Mikel Larreategi Date: Thu, 28 Oct 2021 16:28:21 +0200 Subject: [PATCH 11/24] main --- .release-it.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.release-it.json b/.release-it.json index 29a8a27..de0e4f6 100644 --- a/.release-it.json +++ b/.release-it.json @@ -6,7 +6,7 @@ "changelog": "npx auto-changelog --stdout --commit-limit false -u --template https://github.com/raw/release-it/release-it/master/templates/changelog-compact.hbs", "tagName": "${version}", "commitMessage": "Automated release ${version}", - "requireBranch": "master", + "requireBranch": "main", "requireCleanWorkingDir": false, "git.requireCommits": true }, From 8d49ae29b8015eba0da272f680653bee453807db Mon Sep 17 00:00:00 2001 From: erral Date: Thu, 28 Oct 2021 14:30:08 +0000 Subject: [PATCH 12/24] Automated release 0.0.2 --- package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 3551958..924f580 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@codesyntax/volto-listingadvanced-variation", - "version": "0.0.1", + "version": "0.0.2", "description": "volto-listingadvanced-variation: Volto add-on", "main": "src/index.js", "license": "MIT", @@ -18,5 +18,8 @@ "repository": { "type": "git", "url": "git@github.com:codesyntax/volto-listingadvanced-variation" + }, + "dependencies": { + "release-it": "^14.11.6" } } From 55c11532e568334b9d9d9ac68166e72a5c4d10c6 Mon Sep 17 00:00:00 2001 From: erral Date: Thu, 28 Oct 2021 14:30:13 +0000 Subject: [PATCH 13/24] Automated release 0.0.3 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 924f580..20a1fe6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@codesyntax/volto-listingadvanced-variation", - "version": "0.0.2", + "version": "0.0.3", "description": "volto-listingadvanced-variation: Volto add-on", "main": "src/index.js", "license": "MIT", From d34ce20fc3fd8cdaff65cbe48f43724a6e6ca42a Mon Sep 17 00:00:00 2001 From: Mikel Larreategi Date: Thu, 28 Oct 2021 16:32:26 +0200 Subject: [PATCH 14/24] another try --- .github/workflows/release.yml | 1 - .release-it.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cee635b..15fd143 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,6 +20,5 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: npm install release-it - - run: npm run release - run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc - run: npm run release diff --git a/.release-it.json b/.release-it.json index de0e4f6..bd62b47 100644 --- a/.release-it.json +++ b/.release-it.json @@ -1,6 +1,6 @@ { "npm": { - "publish": false + "publish": true }, "git": { "changelog": "npx auto-changelog --stdout --commit-limit false -u --template https://github.com/raw/release-it/release-it/master/templates/changelog-compact.hbs", From 45a8ea80de08474fc3487bf699168c1d97390b18 Mon Sep 17 00:00:00 2001 From: Mikel Larreategi Date: Thu, 28 Oct 2021 16:36:56 +0200 Subject: [PATCH 15/24] rework --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 15fd143..3067568 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,8 +17,9 @@ jobs: git config user.name "${GITHUB_ACTOR}" git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" - run: npm install + - run: npm install release-it env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - run: npm install release-it + - run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc - run: npm run release From 0badbaefa3f9acda44b98c0055c4603fec2c7cbe Mon Sep 17 00:00:00 2001 From: Mikel Larreategi Date: Thu, 28 Oct 2021 16:42:36 +0200 Subject: [PATCH 16/24] another try --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3067568..dc6b555 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,8 +18,8 @@ jobs: git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" - run: npm install - run: npm install release-it + - run: echo "//registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}" > .npmrc + - run: npm run release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc - - run: npm run release + NPM_TOKEN: ${{ secrets.NPM_TOKEN}} From e87e0df648b7f10b464a63f60ac05f0d4297a05e Mon Sep 17 00:00:00 2001 From: Mikel Larreategi Date: Thu, 28 Oct 2021 16:49:08 +0200 Subject: [PATCH 17/24] metadata --- package.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 20a1fe6..f510b13 100644 --- a/package.json +++ b/package.json @@ -17,9 +17,14 @@ }, "repository": { "type": "git", - "url": "git@github.com:codesyntax/volto-listingadvanced-variation" + "url": "git+ssh://git@github.com/codesyntax/volto-listingadvanced-variation.git" }, "dependencies": { "release-it": "^14.11.6" - } + }, + "bugs": { + "url": "https://github.com/codesyntax/volto-listingadvanced-variation/issues" + }, + "homepage": "https://github.com/codesyntax/volto-listingadvanced-variation#readme", + "author": "Ion Lizarazu " } From 0bd7e45de3bdbdb25168967ae77c54facc0c8dd9 Mon Sep 17 00:00:00 2001 From: Mikel Larreategi Date: Thu, 28 Oct 2021 16:50:37 +0200 Subject: [PATCH 18/24] publishConfig --- package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index f510b13..c1de30e 100644 --- a/package.json +++ b/package.json @@ -26,5 +26,8 @@ "url": "https://github.com/codesyntax/volto-listingadvanced-variation/issues" }, "homepage": "https://github.com/codesyntax/volto-listingadvanced-variation#readme", - "author": "Ion Lizarazu " + "author": "Ion Lizarazu ", + "publishConfig": { + "access": "public" + } } From e27d0dc82be415aead1e55912a40400f238eb840 Mon Sep 17 00:00:00 2001 From: erral Date: Thu, 28 Oct 2021 14:51:35 +0000 Subject: [PATCH 19/24] Automated release 0.0.4 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c1de30e..f0cff22 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@codesyntax/volto-listingadvanced-variation", - "version": "0.0.3", + "version": "0.0.4", "description": "volto-listingadvanced-variation: Volto add-on", "main": "src/index.js", "license": "MIT", From ddc6e940437a8f5dd775ff1c5b304c2d1241abe2 Mon Sep 17 00:00:00 2001 From: Mikel Larreategi Date: Thu, 28 Oct 2021 16:54:22 +0200 Subject: [PATCH 20/24] always minor versions --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dc6b555..7cf6557 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: - run: npm install - run: npm install release-it - run: echo "//registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}" > .npmrc - - run: npm run release + - run: npm run release --minor env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN}} From 413e05870fce8e9b56fd548b97747cc4e4367e04 Mon Sep 17 00:00:00 2001 From: erral Date: Thu, 28 Oct 2021 14:55:35 +0000 Subject: [PATCH 21/24] Automated release 0.0.5 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f0cff22..16ce803 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@codesyntax/volto-listingadvanced-variation", - "version": "0.0.4", + "version": "0.0.5", "description": "volto-listingadvanced-variation: Volto add-on", "main": "src/index.js", "license": "MIT", From 1d8c5883fcc5b87575f1f15ef2a7c0dc94d3948e Mon Sep 17 00:00:00 2001 From: Mikel Larreategi Date: Thu, 28 Oct 2021 17:00:09 +0200 Subject: [PATCH 22/24] always minor --- .github/workflows/release.yml | 2 +- CHANGELOG.md | 54 +++++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7cf6557..8a93efa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: - run: npm install - run: npm install release-it - run: echo "//registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}" > .npmrc - - run: npm run release --minor + - run: npm run release -- minor --c env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN}} diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..7c1ad5b --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,54 @@ +### Changelog + +All notable changes to this project will be documented in this file. Dates are displayed in UTC. + +Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). + +#### [0.1.0](https://github.com/codesyntax/volto-listingadvanced-variation/compare/0.0.5...0.1.0) + +#### [0.0.5](https://github.com/codesyntax/volto-listingadvanced-variation/compare/0.0.4...0.0.5) + +> 28 October 2021 + +- always release minor versions [`#13`](https://github.com/codesyntax/volto-listingadvanced-variation/pull/13) +- Automated release 0.0.5 [`413e058`](https://github.com/codesyntax/volto-listingadvanced-variation/commit/413e05870fce8e9b56fd548b97747cc4e4367e04) +- always minor versions [`ddc6e94`](https://github.com/codesyntax/volto-listingadvanced-variation/commit/ddc6e940437a8f5dd775ff1c5b304c2d1241abe2) + +#### [0.0.4](https://github.com/codesyntax/volto-listingadvanced-variation/compare/0.0.3...0.0.4) + +> 28 October 2021 + +- Develop [`#12`](https://github.com/codesyntax/volto-listingadvanced-variation/pull/12) +- another try [`#11`](https://github.com/codesyntax/volto-listingadvanced-variation/pull/11) +- Develop [`#10`](https://github.com/codesyntax/volto-listingadvanced-variation/pull/10) +- metadata [`e87e0df`](https://github.com/codesyntax/volto-listingadvanced-variation/commit/e87e0df648b7f10b464a63f60ac05f0d4297a05e) +- publishConfig [`0bd7e45`](https://github.com/codesyntax/volto-listingadvanced-variation/commit/0bd7e45de3bdbdb25168967ae77c54facc0c8dd9) +- rework [`45a8ea8`](https://github.com/codesyntax/volto-listingadvanced-variation/commit/45a8ea80de08474fc3487bf699168c1d97390b18) +- Automated release 0.0.4 [`e27d0dc`](https://github.com/codesyntax/volto-listingadvanced-variation/commit/e27d0dc82be415aead1e55912a40400f238eb840) + +#### [0.0.3](https://github.com/codesyntax/volto-listingadvanced-variation/compare/0.0.2...0.0.3) + +> 28 October 2021 + +- Automated release 0.0.3 [`55c1153`](https://github.com/codesyntax/volto-listingadvanced-variation/commit/55c11532e568334b9d9d9ac68166e72a5c4d10c6) + +#### 0.0.2 + +> 28 October 2021 + +- main [`#9`](https://github.com/codesyntax/volto-listingadvanced-variation/pull/9) +- releases when in master [`#8`](https://github.com/codesyntax/volto-listingadvanced-variation/pull/8) +- install release-it [`#7`](https://github.com/codesyntax/volto-listingadvanced-variation/pull/7) +- Develop [`#6`](https://github.com/codesyntax/volto-listingadvanced-variation/pull/6) +- release! [`#4`](https://github.com/codesyntax/volto-listingadvanced-variation/pull/4) +- rel [`#3`](https://github.com/codesyntax/volto-listingadvanced-variation/pull/3) +- readme [`#2`](https://github.com/codesyntax/volto-listingadvanced-variation/pull/2) +- Test auto-release [`#1`](https://github.com/codesyntax/volto-listingadvanced-variation/pull/1) +- initial commit [`2adf33e`](https://github.com/codesyntax/volto-listingadvanced-variation/commit/2adf33ed5c4c794a5d458e598511bc47e457beb7) +- release-it config [`787413a`](https://github.com/codesyntax/volto-listingadvanced-variation/commit/787413a581b00adecf9a5afee1e815218f1baba4) +- reowkr [`4d92499`](https://github.com/codesyntax/volto-listingadvanced-variation/commit/4d9249959c481a05f2c3d6675b97e179b2632d27) +- autorelease config [`13d7f99`](https://github.com/codesyntax/volto-listingadvanced-variation/commit/13d7f994659ad2ca32fd7240f007ff14102ca6e2) +- reale [`59954b9`](https://github.com/codesyntax/volto-listingadvanced-variation/commit/59954b94e9dcaeffd137cee9cab6a30032469ac7) +- Automated release 0.0.2 [`8d49ae2`](https://github.com/codesyntax/volto-listingadvanced-variation/commit/8d49ae29b8015eba0da272f680653bee453807db) +- reowkr [`35886f7`](https://github.com/codesyntax/volto-listingadvanced-variation/commit/35886f7143486776e8cb3a68b31f9a7b9b0102aa) +- Initial commit [`cb4bf07`](https://github.com/codesyntax/volto-listingadvanced-variation/commit/cb4bf07aa8802ab01d400965522587e169a8fc9c) From c9f069de6f2798f2805d14cb013191a7f1704e5c Mon Sep 17 00:00:00 2001 From: Mikel Larreategi Date: Thu, 28 Oct 2021 17:02:31 +0200 Subject: [PATCH 23/24] ups --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8a93efa..1a25764 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: - run: npm install - run: npm install release-it - run: echo "//registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}" > .npmrc - - run: npm run release -- minor --c + - run: npm run release -- minor --ci env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN}} From f7a43d7200696a7b24fe051644ea9b2709d72eba Mon Sep 17 00:00:00 2001 From: Mikel Larreategi Date: Thu, 28 Oct 2021 17:06:49 +0200 Subject: [PATCH 24/24] bump --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 16ce803..439f310 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@codesyntax/volto-listingadvanced-variation", - "version": "0.0.5", + "version": "0.2.0", "description": "volto-listingadvanced-variation: Volto add-on", "main": "src/index.js", "license": "MIT",