Skip to content

Commit 47035ba

Browse files
committed
Merge branch '5-cacheclientloader-fails-to-follow-redirect-from-loader-with-populated-cache'
2 parents 8d3b652 + 14c5349 commit 47035ba

2 files changed

Lines changed: 19 additions & 1 deletion

File tree

.github/workflows/publish.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Publish Package to npmjs
2+
on:
3+
release:
4+
types: [published]
5+
jobs:
6+
npm-publish:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
# Setup .npmrc file to publish to npm
11+
- uses: actions/setup-node@v4
12+
with:
13+
node-version: "20.x"
14+
registry-url: "https://registry.npmjs.org"
15+
- run: npm ci
16+
- run: npm publish
17+
env:
18+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "remix-client-cache",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"description": "Utility library to cache your client data in Remix.run",
55
"type": "module",
66
"main": "./dist/index.cjs",

0 commit comments

Comments
 (0)