File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 9999 labels : ${{ steps.meta.outputs.labels }}
100100 cache-from : type=gha
101101 cache-to : type=gha,mode=max
102+ # Add this to see what files are in the context
103+ build-args : |
104+ DEBUG=1
105+
106+ # Add a step to check the directory structure
107+ - name : Check directory structure
108+ run : |
109+ echo "Current directory: $(pwd)"
110+ echo "Contents of current directory:"
111+ ls -la
112+ echo "Contents of www directory (if it exists):"
113+ ls -la www || echo "www directory not found!"
102114
103115 - name : Update deployment status
104116 run : |
Original file line number Diff line number Diff line change 22FROM nginx:alpine
33
44# Copy the bundler files (already built by the workflow)
5- COPY www /usr/share/nginx/html
5+ COPY ./ www /usr/share/nginx/html
66
77# Copy the custom Nginx configuration
88COPY .github/nginx/default.conf /etc/nginx/conf.d/default.conf
You can’t perform that action at this time.
0 commit comments