Skip to content

Commit

Permalink
ci: fix public access
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianCataldo committed Oct 10, 2023
1 parent 3c1a146 commit 3cf812c
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ jobs:
# GIT_AUTHOR_NAME: "GitHub Actions Shell"
# EMAIL: "github-actions[bot]@users.noreply.github.com"

- uses: 'pnpm/action-setup@d882d12c64e032187b2edb46d3a0d003b7a43598' # v2.4.0
- name: 'Setup PNPM'
uses: 'pnpm/action-setup@d882d12c64e032187b2edb46d3a0d003b7a43598' # v2.4.0
with:
run_install: false

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

- uses: dtinth/setup-github-actions-caching-for-turbo@v1
- name: 'Setup Turbo cache'
uses: dtinth/setup-github-actions-caching-for-turbo@v1

- name: 'Build all packages'
run: 'pnpm build'

- name: 'NPM Identity'
- name: 'Create temporary NPM identity'
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc
- name: 'Git config'
- name: 'Git user configuration'
run: |
git config --global user.name "${{ github.actor }}"
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
Expand Down
3 changes: 3 additions & 0 deletions packages/carbon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,8 @@
"@carbon/web-components": "^2.0.1",
"lit": "^2.8.0"
},
"publishConfig": {
"access": "public"
},
"gitHead": "ae52e9d676b5f5d86cdf3039789a5200f6e2c3aa"
}
3 changes: 3 additions & 0 deletions packages/form/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@
"peerDependencies": {
"lit": "^2.8.0"
},
"publishConfig": {
"access": "public"
},
"customElements": "custom-elements.json",
"gitHead": "ae52e9d676b5f5d86cdf3039789a5200f6e2c3aa"
}
3 changes: 3 additions & 0 deletions packages/material/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,8 @@
"@material/web": "^1.0.0",
"lit": "^2.8.0"
},
"publishConfig": {
"access": "public"
},
"gitHead": "ae52e9d676b5f5d86cdf3039789a5200f6e2c3aa"
}
3 changes: 3 additions & 0 deletions packages/shoelace/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,8 @@
"@shoelace-style/shoelace": "^2.8.0",
"lit": "^2.8.0"
},
"publishConfig": {
"access": "public"
},
"gitHead": "ae52e9d676b5f5d86cdf3039789a5200f6e2c3aa"
}
3 changes: 3 additions & 0 deletions packages/system/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,8 @@
"@carbon/web-components": "^2.0.1",
"lit": "^2.8.0"
},
"publishConfig": {
"access": "public"
},
"gitHead": "ae52e9d676b5f5d86cdf3039789a5200f6e2c3aa"
}
3 changes: 3 additions & 0 deletions packages/types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,8 @@
"peerDependencies": {
"lit": "^2.8.0"
},
"publishConfig": {
"access": "public"
},
"gitHead": "ae52e9d676b5f5d86cdf3039789a5200f6e2c3aa"
}
3 changes: 3 additions & 0 deletions packages/wired/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,8 @@
"lit": "^2.8.0",
"wired-elements": "3.0.0-rc.6"
},
"publishConfig": {
"access": "public"
},
"gitHead": "ae52e9d676b5f5d86cdf3039789a5200f6e2c3aa"
}

0 comments on commit 3cf812c

Please sign in to comment.