Skip to content

Commit

Permalink
chore(release): 1.0.9 [skip ci]
Browse files Browse the repository at this point in the history
## [1.0.9](v1.0.8...v1.0.9) (2021-11-24)

### Bug Fixes

* core.setFailed ([956f188](956f188))
  • Loading branch information
semantic-release-bot committed Nov 24, 2021
1 parent 956f188 commit d79ec2c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.0.9](https://github.com/algolia/algoliasearch-crawler-github-actions/compare/v1.0.8...v1.0.9) (2021-11-24)


### Bug Fixes

* core.setFailed ([956f188](https://github.com/algolia/algoliasearch-crawler-github-actions/commit/956f188ad9c78db5d3473730c48347f833a93464))

## [1.0.8](https://github.com/algolia/algoliasearch-crawler-github-actions/compare/v1.0.7...v1.0.8) (2021-11-24)


Expand Down
6 changes: 4 additions & 2 deletions build/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,9 @@ function crawlerReindex() {
}
console.log('---------CRAWLER CONFIG---------');
console.log("CRAWLER_NAME : ".concat(CRAWLER_NAME));
crawlerReindex().catch(function (error) { return console.log(error); });
crawlerReindex().catch(function (error) {
core.setFailed(error);
});


/***/ }),
Expand Down Expand Up @@ -18438,7 +18440,7 @@ module.exports = JSON.parse('[["0","\\u0000",128],["a1","。",62],["8140"," 
/***/ ((module) => {

"use strict";
module.exports = JSON.parse('{"private":true,"name":"algoliasearch-crawler-github-actions","version":"1.0.8","description":"Github action for Algolia crawler indexing","main":"index.js","scripts":{"build":"yarn clean && tsc","clean":"rm -rf dist/","test":"jest","lint":"eslint src/**/*","semantic-release":"semantic-release","compile":"ncc build ./dist/index.js -o ./build","hot:runtime":"tsc -b -w --preserveWatchOutput"},"repository":{"type":"git","url":"git+https://github.com/algolia/algoliasearch-crawler-github-actions.git"},"keywords":["Crawler","Algolia","Github","Action","indexing","crawl","algoliasearch","search"],"author":{"name":"Algolia, Inc.","url":"https://www.algolia.com"},"license":"MIT","bugs":{"url":"https://github.com/algolia/algoliasearch-crawler-github-actions/issues"},"homepage":"https://github.com/algolia/algoliasearch-crawler-github-actions#readme","devDependencies":{"@semantic-release/changelog":"6.0.1","@semantic-release/exec":"6.0.2","@semantic-release/git":"10.0.1","@semantic-release/npm":"8.0.3","@types/cheerio":"0.22.30","@types/jest":"27.0.3","@types/node":"16.11.7","@types/node-fetch":"3.0.2","@typescript-eslint/eslint-plugin":"5.4.0","@typescript-eslint/parser":"5.4.0","@vercel/ncc":"0.32.0","eslint":"8.2.0","eslint-config-algolia":"19.0.2","eslint-config-prettier":"8.3.0","eslint-plugin-eslint-comments":"3.2.0","eslint-plugin-import":"2.25.3","eslint-plugin-jest":"25.2.4","eslint-plugin-jsdoc":"37.0.3","eslint-plugin-prettier":"4.0.0","jest":"27.3.1","prettier":"2.4.1","semantic-release":"18.0.0","ts-jest":"27.0.7","ts-node":"10.4.0","typescript":"4.5.2"},"dependencies":{"@actions/core":"1.6.0","@actions/github":"5.0.0","node-fetch":"3.0.0"}}');
module.exports = JSON.parse('{"private":true,"name":"algoliasearch-crawler-github-actions","version":"1.0.9","description":"Github action for Algolia crawler indexing","main":"index.js","scripts":{"build":"yarn clean && tsc","clean":"rm -rf dist/","test":"jest","lint":"eslint src/**/*","semantic-release":"semantic-release","compile":"ncc build ./dist/index.js -o ./build","hot:runtime":"tsc -b -w --preserveWatchOutput"},"repository":{"type":"git","url":"git+https://github.com/algolia/algoliasearch-crawler-github-actions.git"},"keywords":["Crawler","Algolia","Github","Action","indexing","crawl","algoliasearch","search"],"author":{"name":"Algolia, Inc.","url":"https://www.algolia.com"},"license":"MIT","bugs":{"url":"https://github.com/algolia/algoliasearch-crawler-github-actions/issues"},"homepage":"https://github.com/algolia/algoliasearch-crawler-github-actions#readme","devDependencies":{"@semantic-release/changelog":"6.0.1","@semantic-release/exec":"6.0.2","@semantic-release/git":"10.0.1","@semantic-release/npm":"8.0.3","@types/cheerio":"0.22.30","@types/jest":"27.0.3","@types/node":"16.11.7","@types/node-fetch":"3.0.2","@typescript-eslint/eslint-plugin":"5.4.0","@typescript-eslint/parser":"5.4.0","@vercel/ncc":"0.32.0","eslint":"8.2.0","eslint-config-algolia":"19.0.2","eslint-config-prettier":"8.3.0","eslint-plugin-eslint-comments":"3.2.0","eslint-plugin-import":"2.25.3","eslint-plugin-jest":"25.2.4","eslint-plugin-jsdoc":"37.0.3","eslint-plugin-prettier":"4.0.0","jest":"27.3.1","prettier":"2.4.1","semantic-release":"18.0.0","ts-jest":"27.0.7","ts-node":"10.4.0","typescript":"4.5.2"},"dependencies":{"@actions/core":"1.6.0","@actions/github":"5.0.0","node-fetch":"3.0.0"}}');

/***/ })

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "algoliasearch-crawler-github-actions",
"version": "1.0.8",
"version": "1.0.9",
"description": "Github action for Algolia crawler indexing",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit d79ec2c

Please sign in to comment.