File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -104,8 +104,8 @@ jobs:
104
104
with :
105
105
name : widget-build
106
106
path : |
107
- dist/widget.*
108
- dist/style.css
107
+ dist/embed/ widget.*
108
+ dist/embed/ style.css
109
109
retention-days : 1
110
110
111
111
test-widget :
@@ -127,15 +127,17 @@ jobs:
127
127
uses : actions/download-artifact@v4
128
128
with :
129
129
name : widget-build
130
- path : dist/
130
+ path : dist/embed/
131
131
132
132
- name : Verify downloaded files
133
133
run : |
134
134
echo "Contents of dist directory:"
135
135
ls -la dist/
136
+ echo "Contents of dist/embed directory:"
137
+ ls -la dist/embed/
136
138
echo "Checking for required files..."
137
- test -f dist/widget.umd.js || (echo "widget.umd.js not found!" && exit 1)
138
- test -f dist/style.css || (echo "style.css not found!" && exit 1)
139
+ test -f dist/embed/ widget.umd.js || (echo "widget.umd.js not found!" && exit 1)
140
+ test -f dist/embed/ style.css || (echo "style.css not found!" && exit 1)
139
141
echo "Contents of root directory:"
140
142
ls -la
141
143
echo "Checking test-widget-embed.html exists:"
You can’t perform that action at this time.
0 commit comments