Skip to content

Commit 13b4ad6

Browse files
authored
Merge pull request #33 from mcclatchy/PE-398-2.5-automation
Pe 398 2.5 automation
2 parents bbf1064 + 8780a24 commit 13b4ad6

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

.github/workflows/deploy-to-gcs.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,5 @@ jobs:
3131
3232
- name: Sync files to Google Cloud Storage
3333
run: |
34-
gcloud storage rsync --dry-run --recursive dist gs://mc-high-impact/sds/$version
35-
36-
# - name: List files in bucket (Optional - for verification)
37-
# run: |
38-
# gsutil ls gs://${{ secrets.GCP_BUCKET_NAME }}/my_files
34+
gcloud storage rsync --recursive dist gs://mc-high-impact/sds/$version/dist
35+
gcloud storage rsync --recursive static/css gs://mc-high-impact/sds/$version/css

dist/saratoga.css

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2337,6 +2337,11 @@ footer {
23372337
/**
23382338
* Related stories
23392339
*/
2340+
.related-stories > *:last-child {
2341+
border-bottom: 0.5px solid var(--secondary-text-color);
2342+
padding-bottom: var(--space);
2343+
}
2344+
23402345
.related-stories h3 {
23412346
font-size: 0.89rem;
23422347
}
@@ -2348,10 +2353,6 @@ footer {
23482353
margin-bottom: var(--space);
23492354
}
23502355

2351-
.related-stories hr {
2352-
margin-top: 15px;
2353-
}
2354-
23552356
@media (max-width: 674px) {
23562357
.related-stories .package::after {
23572358
content: "";

package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
{
22
"name": "saratoga-design-system",
3-
"version": "2.5.5",
3+
"version": "2.5.7",
4+
"scripts": {
5+
"build": "sass --style expanded --no-source-map builds:dist",
6+
"version": "npm run build && git add -A dist",
7+
"postversion": "git push"
8+
},
49
"files": [
510
"dist/saratoga.css",
611
"dist/dsp.css",

0 commit comments

Comments
 (0)