@spaced-out/ui-design-system 0.0.6-beta.1 → 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.
@@ -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
- uses: actions/checkout@v2.3.4
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
@@ -47,14 +49,15 @@ jobs:
47
49
  run: |
48
50
  git config --global user.email "86281150+superrover@users.noreply.github.com"
49
51
  git config --global user.name "Nishant Gaurav"
52
+ git fetch --all
53
+ git checkout master
54
+ git pull origin master
50
55
 
51
56
  # Bump package version
52
57
  # Use tag latest
53
58
  - name: Bump release version
54
59
  if: startsWith(github.event.inputs.release-type, 'pre') != true
55
60
  run: |
56
- git fetch --all
57
- git pull origin
58
61
  yarn build:changelog --release-as $RELEASE_TYPE
59
62
  echo "RELEASE_TAG=latest" >> $GITHUB_ENV
60
63
  env:
@@ -65,8 +68,6 @@ jobs:
65
68
  - name: Bump pre-release version
66
69
  if: startsWith(github.event.inputs.release-type, 'pre')
67
70
  run: |
68
- git fetch --all
69
- git pull origin
70
71
  yarn build:changelog --$RELEASE_TYPE beta
71
72
  echo "RELEASE_TAG=beta" >> $GITHUB_ENV
72
73
  env:
package/CHANGELOG.md CHANGED
@@ -2,6 +2,25 @@
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
+
17
+ ### 0.0.6-beta.2 (2022-11-29)
18
+
19
+
20
+ ### Features
21
+
22
+ * git fix ([16e034a](https://github.com/spaced-out/ui-design-system/commit/16e034a9ea9fb7b4a0e0d3938e17d4a3cdaa86ff))
23
+
5
24
  ### 0.0.6-beta.1 (2022-11-29)
6
25
 
7
26
  ### 0.0.6-beta.0 (2022-11-29)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spaced-out/ui-design-system",
3
- "version": "0.0.6-beta.1",
3
+ "version": "0.0.6",
4
4
  "main": "index.js",
5
5
  "description": "Sense UI components library",
6
6
  "author": {