We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67eb02e commit fc7e38dCopy full SHA for fc7e38d
.github/workflows/pre-release.yml
@@ -11,6 +11,12 @@ jobs:
11
- uses: actions/setup-node@v3
12
with:
13
node-version: 18
14
+ registry-url: 'https://registry.npmjs.org'
15
+ - name: Cache node_modules
16
+ uses: actions/cache@v3
17
+ with:
18
+ path: node_modules
19
+ key: ${{ runner.os }}-${{ env.NODE_VERSION }}-node_modules-${{ hashFiles('**/package-lock.json') }}
20
- name: Install dependencies
21
run: npm install && npm run bootstrap
22
- name: Bump version
@@ -33,6 +39,6 @@ jobs:
33
39
- name: Publish LSP
34
40
run: >
35
41
cd packages/tailwindcss-language-server &&
36
- npm publish --tag insiders
42
+ npm publish --tag insiders --access public
37
43
env:
38
44
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments