Skip to content

Commit a33f673

Browse files
authored
fix: npm release package name param changed (#33)
1 parent 539322b commit a33f673

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/publish-clients.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
- uses: actions/checkout@v2
1414

1515
- name: Generate client
16+
# -p properties https://openapi-generator.tech/docs/generators/typescript
1617
run: |
1718
docker run --rm -v ${GITHUB_WORKSPACE}:/local openapitools/openapi-generator:cli-5.3.x \
1819
generate -i /local/api/notification-service.yaml \
1920
-g typescript \
2021
-o /local/client \
21-
-p projectName="@commitdev/zero-notification-service-client" \
22-
-p projectDescription="Generated client for zero-notification-service" \
23-
-p projectVersion="${{ github.event.release.tag_name }}" \
22+
-p npmName="@commitdev/zero-notification-service-client" \
23+
-p npmVersion="${{ github.event.release.tag_name }}" \
2424
-p moduleName="NotificationService"
2525
sudo chmod -R a+rw ${GITHUB_WORKSPACE}
2626

0 commit comments

Comments
 (0)