@ayasofyazilim/saas 0.0.97 → 0.0.98
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/release.yaml +3 -2
- package/TagService/schemas.gen.ts +330 -91
- package/TagService/services.gen.ts +86 -3
- package/TagService/types.gen.ts +245 -70
- package/package.json +1 -1
|
@@ -81,17 +81,18 @@ jobs:
|
|
|
81
81
|
|
|
82
82
|
# Commit changes
|
|
83
83
|
- name: Commit CHANGELOG.md and package.json changes and create tag
|
|
84
|
-
run: |
|
|
84
|
+
run: |
|
|
85
85
|
git add "package.json"
|
|
86
86
|
# git add "CHANGELOG.md"
|
|
87
87
|
git commit -m "chore: release ${{ env.NEW_VERSION }}"
|
|
88
88
|
git tag ${{ env.NEW_VERSION }}
|
|
89
|
+
|
|
89
90
|
|
|
90
91
|
# Publish version to public repository
|
|
91
92
|
- name: Publish
|
|
92
93
|
run: npm publish --verbose --access public --tag ${{ env.RELEASE_TAG }}
|
|
93
94
|
env:
|
|
94
|
-
NODE_AUTH_TOKEN: ${{ secrets.
|
|
95
|
+
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_ACCESS_TOKEN }}
|
|
95
96
|
|
|
96
97
|
# Push repository changes
|
|
97
98
|
- name: Push changes to repository
|