Skip to content

Commit

Permalink
fix: AWS elastic beanstalk release
Browse files Browse the repository at this point in the history
  • Loading branch information
shanejonas committed Jul 7, 2019
1 parent ba420ee commit 054388c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- restore_cache: *restore-deps-cache
- run: npm install
- run: npm run build
- run: npm install semantic-release @semantic-release/changelog @semantic-release/git @semantic-release/github @semantic-release/npm @semantic-release/commit-analyzer @semantic-release/release-notes-generator @qiwi/semantic-release-gh-pages-plugin
- run: npm install semantic-release @semantic-release/changelog @semantic-release/git @semantic-release/github @semantic-release/npm @semantic-release/commit-analyzer @semantic-release/release-notes-generator
- run: ./node_modules/.bin/semantic-release
- save_cache: *save-deps-cache

Expand Down
9 changes: 1 addition & 8 deletions .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,10 @@
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github",
"@qiwi/semantic-release-gh-pages-plugin"
"@semantic-release/github"
],
"publish": [
"@semantic-release/github",
{
"path": "@qiwi/semantic-release-gh-pages-plugin",
"msg": "github pages release",
"src": "docs/",
"branch": "gh-pages"
},
"@semantic-release/npm"
],
"success": [
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ const options = {
transportConfigs: [
{
type: "HTTPTransport",
options: { port: 9000, middleware: [] } as IHTTPServerTransportOptions,
options: { port: 8081, middleware: [] } as IHTTPServerTransportOptions,
},
{
type: "WebSocketTransport",
options: { port: 9001, middleware: [], allowHTTP1: true } as IWebSocketServerTransportOptions,
options: { port: 8082, middleware: [], allowHTTP1: true } as IWebSocketServerTransportOptions,
},
],
openrpcDocument: openrpcDocument as any,
Expand Down

0 comments on commit 054388c

Please sign in to comment.