Home

tailwind-ctp-intellisense @master - refs - log -
-
https://git.jolheiser.com/tailwind-ctp-intellisense.git
Tailwind intellisense + Catppuccin
tree log patch
Update workflow
Brad Cornes <hello@bradley.dev>
1 year ago
1 changed files, 7 additions(+), 1 deletions(-)
M .github/workflows/pre-release.yml -> .github/workflows/pre-release.yml
diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml
index a9b0fbf9e1e075fe2fec3485ec7a6003cc8038a7..ff66c20dd311eb6c23c3a1031669bf9d098b68fc 100644
--- a/.github/workflows/pre-release.yml
+++ b/.github/workflows/pre-release.yml
@@ -11,6 +11,12 @@       - uses: actions/checkout@v3
       - uses: actions/setup-node@v3
         with:
           node-version: 18
+          registry-url: 'https://registry.npmjs.org'
+      - name: Cache node_modules
+        uses: actions/cache@v3
+        with:
+          path: node_modules
+          key: ${{ runner.os }}-${{ env.NODE_VERSION }}-node_modules-${{ hashFiles('**/package-lock.json') }}
       - name: Install dependencies
         run: npm install && npm run bootstrap
       - name: Bump version
@@ -33,6 +39,6 @@           npm version 0.0.0-insiders.${{ env.SHA_SHORT }} --force --no-git-tag-version
       - name: Publish LSP
         run: >
           cd packages/tailwindcss-language-server &&
-          npm publish --tag insiders
+          npm publish --tag insiders --access public
         env:
           NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}