Skip to content

Commit 62a3a71

Browse files
authored
v1.2.1 (#10)
1 parent 464cbd9 commit 62a3a71

32 files changed

+50
-2179
lines changed

.github/workflows/publish.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ jobs:
1313
with:
1414
node-version: 12
1515
registry-url: https://registry.npmjs.org/
16-
- run: npm install
17-
- run: npm publish --access public
16+
- name: Install dependencies
17+
run: npm install
18+
- name: Build package
19+
run: npm run build
20+
- name: Publish package
21+
run: npm publish --access public
1822
env:
1923
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ jobs:
2222
node-version: ${{ matrix.node }}
2323
- name: Install Node Modules
2424
run: npm install
25-
25+
- name: Build package
26+
run: npm run build
2627
- name: Run tests
2728
env:
2829
SANDBOX_API_KEY: ${{ secrets.SANDBOX_API_KEY }}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
# OpenAPI Code gen artifacts
22
.openapi-generator
33
.openapi-generator-ignore
4+
dist
5+
node_modules

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.2.1] - 2020-09-18
11+
12+
### Fixed
13+
14+
- Fixing an issue related to the OpenApi code generator.
15+
1016
## [1.2.0] - 2020-09-17
1117

1218
### Added

0 commit comments

Comments
 (0)