Skip to content

Commit 255e4d9

Browse files
committed
test timestamp update
1 parent 27e6ea7 commit 255e4d9

File tree

6 files changed

+162
-111
lines changed

6 files changed

+162
-111
lines changed

Diff for: .github/workflows/cloudflare.yml

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515

1616
steps:
1717
- uses: actions/checkout@v3
18+
with:
19+
fetch-depth: 0
1820
- uses: actions/setup-node@v3
1921
with:
2022
node-version: 18

Diff for: .github/workflows/deploy-prd.yml

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v3
19+
with:
20+
fetch-depth: 0
1921
- uses: actions/setup-node@v3
2022
with:
2123
node-version: 18

Diff for: .github/workflows/deploy-stg.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ jobs:
1515

1616
steps:
1717
- uses: actions/checkout@v3
18-
- run: git log -1 --pretty=format:%aI content/hardware/02.hero/boards/uno-r4-minima/tutorials/adc-resolution/adc-resolution.md
18+
with:
19+
fetch-depth: 0
20+
- run: git log -1 --pretty=format:%aI content/learn/04.electronics/05.servo-motors/servo-motors.md
1921
- uses: actions/setup-node@v3
2022
with:
2123
node-version: 18
@@ -51,11 +53,8 @@ jobs:
5153
restore-keys: |
5254
${{ runner.os }}-public-gatsby-
5355
54-
- run: git log -1 --pretty=format:%aI content/hardware/02.hero/boards/uno-r4-minima/tutorials/adc-resolution/adc-resolution.md
5556
- run: npm install
56-
- run: git log -1 --pretty=format:%aI content/hardware/02.hero/boards/uno-r4-minima/tutorials/adc-resolution/adc-resolution.md
5757
- run: npm run build
58-
- run: git log -1 --pretty=format:%aI content/hardware/02.hero/boards/uno-r4-minima/tutorials/adc-resolution/adc-resolution.md
5958

6059
- name: Configure AWS Credentials
6160
uses: aws-actions/configure-aws-credentials@v1

Diff for: package-lock.json

+65-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
},
1919
"homepage": "https://github.com/arduino/docs-content#readme",
2020
"dependencies": {
21-
"@arduino/docs-arduino-cc": "^2.0.5-hotfix-1",
21+
"@arduino/docs-arduino-cc": "^2.0.6-alpha-4",
2222
"gatsby": "^5.11.0",
2323
"gatsby-background-image": "^1.6.0",
2424
"gatsby-image": "^3.11.0",
+89-86
Original file line numberDiff line numberDiff line change
@@ -1,90 +1,93 @@
11
{
2-
"$schema": "http://json-schema.org/draft-04/schema#",
3-
"type": "object",
4-
"properties": {
5-
"beta": {
6-
"type": "boolean"
7-
},
8-
"source" : {
9-
"type": "string"
10-
},
11-
"title": {
12-
"type": "string",
13-
"maxLength": 60
14-
},
15-
"coverImage": {
16-
"type": "string"
17-
},
18-
"author": {
19-
"type": "string"
20-
},
21-
"tags": {
22-
"type": "array",
23-
"items": [
24-
{
25-
"type": "string"
26-
}
27-
]
28-
},
29-
"description": {
30-
"type": "string"
31-
},
32-
"difficulty": {
33-
"type": "string",
34-
"enum": ["beginner", "intermediate", "advanced"]
35-
},
36-
"hero_position": {
37-
"type": "integer"
38-
},
39-
"featuredImage": {
40-
"type": "string"
41-
},
42-
"software": {
43-
"type": "array",
44-
"items": [
45-
{
46-
"type": "string"
47-
}
48-
]
49-
},
50-
"compatible-products":{
51-
"type": "array",
52-
"items": [
53-
{
54-
"type": "string"
55-
}
56-
]
57-
},
58-
"hardware": {
59-
"type": "array",
60-
"items": [
61-
{
62-
"type": "string"
63-
}
64-
]
65-
},
66-
"libraries": {
67-
"type": "array",
68-
"items": [
69-
{
70-
"type": "object",
71-
"properties": {
72-
"name" : {
73-
"type" : "string"
74-
},
75-
"url" : {
76-
"type" : "string"
77-
}
2+
"$schema": "http://json-schema.org/draft-04/schema#",
3+
"type": "object",
4+
"properties": {
5+
"beta": {
6+
"type": "boolean"
7+
},
8+
"source": {
9+
"type": "string"
10+
},
11+
"title": {
12+
"type": "string",
13+
"maxLength": 60
14+
},
15+
"coverImage": {
16+
"type": "string"
17+
},
18+
"author": {
19+
"type": "string"
20+
},
21+
"tags": {
22+
"type": "array",
23+
"items": [
24+
{
25+
"type": "string"
26+
}
27+
]
28+
},
29+
"description": {
30+
"type": "string"
31+
},
32+
"difficulty": {
33+
"type": "string",
34+
"enum": ["beginner", "intermediate", "advanced"]
35+
},
36+
"hero_position": {
37+
"type": "integer"
38+
},
39+
"featuredImage": {
40+
"type": "string"
41+
},
42+
"software": {
43+
"type": "array",
44+
"items": [
45+
{
46+
"type": "string"
47+
}
48+
]
49+
},
50+
"compatible-products": {
51+
"type": "array",
52+
"items": [
53+
{
54+
"type": "string"
55+
}
56+
]
57+
},
58+
"hardware": {
59+
"type": "array",
60+
"items": [
61+
{
62+
"type": "string"
63+
}
64+
]
65+
},
66+
"libraries": {
67+
"type": "array",
68+
"items": [
69+
{
70+
"type": "object",
71+
"properties": {
72+
"name": {
73+
"type": "string"
74+
},
75+
"url": {
76+
"type": "string"
7877
}
7978
}
80-
]
81-
}
79+
}
80+
]
81+
},
82+
"primary_button_title": {
83+
"type": "string",
84+
"maxLength": 15
8285
},
83-
"required": [
84-
"title",
85-
"tags",
86-
"description",
87-
"author"
88-
],
89-
"additionalProperties" : false
90-
}
86+
"secondary_button_title": {
87+
"type": "string",
88+
"maxLength": 15
89+
}
90+
},
91+
"required": ["title", "tags", "description", "author"],
92+
"additionalProperties": false
93+
}

0 commit comments

Comments
 (0)