spoko-design-system 1.11.4 → 1.11.5

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.
@@ -2,12 +2,17 @@ name: Deploy to GitHub Pages
2
2
 
3
3
  on:
4
4
  # Trigger the workflow every time you push to the `main` branch
5
- # Using a different branch name? Replace `main` with your branchs name
5
+ # Using a different branch name? Replace `main` with your branch's name
6
6
  push:
7
7
  branches: [ main ]
8
8
  # Allows you to run this workflow manually from the Actions tab on GitHub.
9
9
  workflow_dispatch:
10
10
 
11
+ # Prevent concurrent deployments
12
+ concurrency:
13
+ group: pages
14
+ cancel-in-progress: false
15
+
11
16
  # Allow this job to clone the repo and create a page deployment
12
17
  permissions:
13
18
  contents: read
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [1.11.5](https://github.com/polo-blue/sds/compare/v1.11.4...v1.11.5) (2025-11-19)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **ci:** prevent concurrent GitHub Pages deployments ([7691c41](https://github.com/polo-blue/sds/commit/7691c417006711b3ec7b47300bbcc81abd303d3e))
6
+
1
7
  ## [1.11.4](https://github.com/polo-blue/sds/compare/v1.11.3...v1.11.4) (2025-11-19)
2
8
 
3
9
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spoko-design-system",
3
- "version": "1.11.4",
3
+ "version": "1.11.5",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "main": "./index.ts",