gatsby-matrix-theme 22.0.2 → 22.0.3
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/.ci.yml
CHANGED
|
@@ -10,7 +10,7 @@ Matrix Theme Test:
|
|
|
10
10
|
image: node:14.15.0
|
|
11
11
|
stage: test
|
|
12
12
|
tags:
|
|
13
|
-
-
|
|
13
|
+
- gatsby-runner-dev-1
|
|
14
14
|
script:
|
|
15
15
|
- npm config set //registry.npmjs.org/:_authToken $NPM_AUTH_TOKEN
|
|
16
16
|
- yarn config set cache-folder .yarn
|
|
@@ -29,7 +29,7 @@ Theme Publish:
|
|
|
29
29
|
image: node:18.0.0
|
|
30
30
|
stage: publish
|
|
31
31
|
tags:
|
|
32
|
-
-
|
|
32
|
+
- gatsby-runner-dev-docker
|
|
33
33
|
before_script:
|
|
34
34
|
- git config --global http.sslverify false
|
|
35
35
|
- git config --global user.email "floyd@gig.com"
|
|
@@ -52,7 +52,7 @@ Theme Beta Publish:
|
|
|
52
52
|
image: git.ilcd.rocks:4567/team-floyd/themes/gatsby-themes:node14
|
|
53
53
|
stage: publish-beta
|
|
54
54
|
tags:
|
|
55
|
-
-
|
|
55
|
+
- gatsby-runner-dev-docker
|
|
56
56
|
before_script:
|
|
57
57
|
- git config --global http.sslverify false
|
|
58
58
|
- git config --global user.email "floyd@gig.com"
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [22.0.3](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v22.0.2...v22.0.3) (2023-05-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* pipelines ([c97c5f0](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/c97c5f0b5846a44aac22bce244275b094e3c5fce))
|
|
7
|
+
* pipelines ([21baad1](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/21baad10578a5558da92e355b9a1f055decfa1fb))
|
|
8
|
+
|
|
1
9
|
## [22.0.2](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v22.0.1...v22.0.2) (2023-05-11)
|
|
2
10
|
|
|
3
11
|
|
package/package.json
CHANGED
|
@@ -99,6 +99,7 @@ function Body({ pageContext, children, excludeTemplateInPopup = [], hideOperator
|
|
|
99
99
|
{navigation && (
|
|
100
100
|
<Navigation
|
|
101
101
|
template={template}
|
|
102
|
+
pageContext={pageContext}
|
|
102
103
|
section={navigation}
|
|
103
104
|
searchIcon="../../../../../../images/search.svg"
|
|
104
105
|
menu="main_menu"
|
package/storybook/.ci.yml
CHANGED
|
@@ -6,7 +6,7 @@ Storybook Build:
|
|
|
6
6
|
image: git.ilcd.rocks:4567/team-floyd/themes/gatsby-themes:node14
|
|
7
7
|
stage: build
|
|
8
8
|
tags:
|
|
9
|
-
-
|
|
9
|
+
- gatsby-runner-dev-1
|
|
10
10
|
script:
|
|
11
11
|
- yarn config set cache-folder .yarn
|
|
12
12
|
- npm config set //registry.npmjs.org/:_authToken $NPM_AUTH_TOKEN
|
|
@@ -26,10 +26,9 @@ Storybook Deploy:
|
|
|
26
26
|
image: git.ilcd.rocks:4567/team-floyd/themes/gatsby-themes:node14
|
|
27
27
|
stage: deploy
|
|
28
28
|
tags:
|
|
29
|
-
-
|
|
29
|
+
- gatsby-runner-dev-1
|
|
30
30
|
script:
|
|
31
31
|
- mkdir -p ~/.ssh
|
|
32
|
-
- ssh-keyscan -H storybook >> ~/.ssh/known_hosts
|
|
33
32
|
- echo "$FLOYD_ROOT_KEY" > ~/.ssh/id_rsa
|
|
34
33
|
- chmod 600 ~/.ssh/id_rsa
|
|
35
34
|
- echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
|