Skip to content

Commit

Permalink
ci: fix issue in adapter ci pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Megakuul committed Sep 26, 2024
1 parent 0969314 commit 8630d28
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/publish_adapter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
- name: Publish package
run: |
cd adapter-battleshiper
npm ci
npx jsr publish
publish-npm:
Expand All @@ -29,8 +30,6 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
node-version: latest
- name: publish to npm
Expand Down
1 change: 1 addition & 0 deletions adapter-battleshiper/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
A SvelteKit adapter for deployment on battleshiper lambda infrastructure.



## Installation

Install the adapter and update your `svelte.config.js`:
Expand Down
6 changes: 5 additions & 1 deletion adapter-battleshiper/jsr.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
"version": "0.5.2",
"exports": "./index.js",
"publish": {
"include": ["./src/*.js"]
"include": [
"./index.js",
"./index.d.ts",
"./src/*.js"
]
}
}

0 comments on commit 8630d28

Please sign in to comment.