Skip to content

Commit 3cf812c

Browse files
committed
ci: fix public access
1 parent 3c1a146 commit 3cf812c

File tree

8 files changed

+27
-4
lines changed

8 files changed

+27
-4
lines changed

.github/workflows/release.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ jobs:
4646
# GIT_AUTHOR_NAME: "GitHub Actions Shell"
4747
# EMAIL: "github-actions[bot]@users.noreply.github.com"
4848

49-
- uses: 'pnpm/action-setup@d882d12c64e032187b2edb46d3a0d003b7a43598' # v2.4.0
49+
- name: 'Setup PNPM'
50+
uses: 'pnpm/action-setup@d882d12c64e032187b2edb46d3a0d003b7a43598' # v2.4.0
5051
with:
5152
run_install: false
5253

@@ -88,18 +89,19 @@ jobs:
8889
# GIT_COMMITTER_EMAIL: "github-actions[bot]@users.noreply.github.com"
8990
# run: "pnpm exec multi-semantic-release"
9091

91-
- uses: dtinth/setup-github-actions-caching-for-turbo@v1
92+
- name: 'Setup Turbo cache'
93+
uses: dtinth/setup-github-actions-caching-for-turbo@v1
9294

9395
- name: 'Build all packages'
9496
run: 'pnpm build'
9597

96-
- name: 'NPM Identity'
98+
- name: 'Create temporary NPM identity'
9799
env:
98100
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
99101
run: |
100102
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc
101103
102-
- name: 'Git config'
104+
- name: 'Git user configuration'
103105
run: |
104106
git config --global user.name "${{ github.actor }}"
105107
git config --global user.email "${{ github.actor }}@users.noreply.github.com"

packages/carbon/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,8 @@
6565
"@carbon/web-components": "^2.0.1",
6666
"lit": "^2.8.0"
6767
},
68+
"publishConfig": {
69+
"access": "public"
70+
},
6871
"gitHead": "ae52e9d676b5f5d86cdf3039789a5200f6e2c3aa"
6972
}

packages/form/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,9 @@
6565
"peerDependencies": {
6666
"lit": "^2.8.0"
6767
},
68+
"publishConfig": {
69+
"access": "public"
70+
},
6871
"customElements": "custom-elements.json",
6972
"gitHead": "ae52e9d676b5f5d86cdf3039789a5200f6e2c3aa"
7073
}

packages/material/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,8 @@
6565
"@material/web": "^1.0.0",
6666
"lit": "^2.8.0"
6767
},
68+
"publishConfig": {
69+
"access": "public"
70+
},
6871
"gitHead": "ae52e9d676b5f5d86cdf3039789a5200f6e2c3aa"
6972
}

packages/shoelace/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,8 @@
6363
"@shoelace-style/shoelace": "^2.8.0",
6464
"lit": "^2.8.0"
6565
},
66+
"publishConfig": {
67+
"access": "public"
68+
},
6669
"gitHead": "ae52e9d676b5f5d86cdf3039789a5200f6e2c3aa"
6770
}

packages/system/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,8 @@
6464
"@carbon/web-components": "^2.0.1",
6565
"lit": "^2.8.0"
6666
},
67+
"publishConfig": {
68+
"access": "public"
69+
},
6770
"gitHead": "ae52e9d676b5f5d86cdf3039789a5200f6e2c3aa"
6871
}

packages/types/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,8 @@
2525
"peerDependencies": {
2626
"lit": "^2.8.0"
2727
},
28+
"publishConfig": {
29+
"access": "public"
30+
},
2831
"gitHead": "ae52e9d676b5f5d86cdf3039789a5200f6e2c3aa"
2932
}

packages/wired/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,8 @@
6464
"lit": "^2.8.0",
6565
"wired-elements": "3.0.0-rc.6"
6666
},
67+
"publishConfig": {
68+
"access": "public"
69+
},
6770
"gitHead": "ae52e9d676b5f5d86cdf3039789a5200f6e2c3aa"
6871
}

0 commit comments

Comments
 (0)