@spaced-out/ui-design-system 0.0.6-beta.2 → 0.0.6
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/publish_to_npm.yml +2 -0
- package/CHANGELOG.md +12 -0
- package/package.json +1 -1
|
@@ -22,10 +22,12 @@ jobs:
|
|
|
22
22
|
runs-on: ubuntu-latest
|
|
23
23
|
steps:
|
|
24
24
|
# Checkout project repository
|
|
25
|
+
# Added fetch-depth to fetch complete history of repo. TODO(Nishant): Customize?
|
|
25
26
|
- name: Checkout
|
|
26
27
|
uses: actions/checkout@v3
|
|
27
28
|
with:
|
|
28
29
|
token: ${{ secrets.NPM_PUBLISH_USER_ACCESS_TOKEN }}
|
|
30
|
+
fetch-depth: '0'
|
|
29
31
|
|
|
30
32
|
# Setup Node.js environment
|
|
31
33
|
- name: Setup Node.js
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.0.6](https://github.com/spaced-out/ui-design-system/compare/v0.0.6-beta.2...v0.0.6) (2022-11-29)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* fetch complete history of repo in publish action ([09ea18b](https://github.com/spaced-out/ui-design-system/commit/09ea18b9df507e1e51a6161e2300c5e09c62bdb4))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* added comment to fetch complete history of repo in publish action ([94e5ae1](https://github.com/spaced-out/ui-design-system/commit/94e5ae146742e6e70c88a8cf428a974e7e8faaf3))
|
|
16
|
+
|
|
5
17
|
### 0.0.6-beta.2 (2022-11-29)
|
|
6
18
|
|
|
7
19
|
|