Skip to content

Commit a77f963

Browse files
committed
fix(ci): fix build
1 parent 2351a52 commit a77f963

File tree

3 files changed

+7
-56
lines changed

3 files changed

+7
-56
lines changed

.github/workflows/artifact.yml

-50
This file was deleted.

.github/workflows/publish.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
- name: Archive production artifacts 🚀
3030
uses: actions/upload-artifact@v4
3131
with:
32-
name: lib
33-
path: lib
32+
name: dist
33+
path: dist/
3434
release:
3535
name: semantic-release
3636
needs: [build]
@@ -47,7 +47,8 @@ jobs:
4747
- name: Download artifacts
4848
uses: actions/download-artifact@v4
4949
with:
50-
name: lib
50+
name: dist
51+
path: dist/
5152
- name: Publish package 📦
5253
run: |
5354
npm ci

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"name": "@extendscript/csinterface",
33
"version": "1.0.0",
44
"description": "TypeScript version of Adobe CSInterface",
5-
"main": "lib/index.js",
6-
"types": "lib/index.d.ts",
5+
"main": "dist/index.js",
6+
"types": "dist/index.d.ts",
77
"scripts": {
88
"build": "tsc",
99
"test": "echo \"Error: no test specified\" && exit 0"
@@ -41,6 +41,6 @@
4141
"typescript": "^5.4.5"
4242
},
4343
"files": [
44-
"lib/**/*"
44+
"dist/**/*"
4545
]
4646
}

0 commit comments

Comments
 (0)