Skip to content

Commit c0aae61

Browse files
committed
wip: update path
1 parent a9a1bb8 commit c0aae61

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/artifact.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
- name: Archive production artifacts 🚀
2323
uses: actions/upload-artifact@v4
2424
with:
25-
name: lib
26-
path: lib
25+
name: dist
26+
path: dist/
2727
check:
2828
name: check build
2929
needs: [build]
@@ -40,9 +40,11 @@ jobs:
4040
- name: Download artifacts
4141
uses: actions/download-artifact@v4
4242
with:
43-
name: lib
43+
name: dist
4444
- name: List files
4545
shell: bash
4646
run: |
4747
echo We are `pwd`
4848
ls -la ./
49+
ls -la ./dist
50+
ls -la ./lib

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"target": "es5",
44
"module": "commonjs",
5-
"outDir": "lib",
5+
"outDir": "dist",
66
"removeComments": false,
77
"preserveConstEnums": true,
88
"types": ["./CEPEngine_extensions", "./window", "@types/node"],

0 commit comments

Comments
 (0)