You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to use this action, I must first reproduce the build to make sure it has been built from the source code.
However, The files I get when trying to build are different from those in the dist folder.
Could you elaborate on your build process?
The text was updated successfully, but these errors were encountered:
I created to a Dockerfile to allow myself to control any bit of the process.
Can you please try it?
FROM node:12.16.2-slim
# Install latest yarn# Install node_modules from package.json and yarn.lockWORKDIR /app/frontend
COPY package.json package-lock.json ./
RUN npm ci
COPY *.js ./
RUN npm run-script package
RUN sha256sum dist/index.js
In order to use this action, I must first reproduce the build to make sure it has been built from the source code.
However, The files I get when trying to build are different from those in the dist folder.
Could you elaborate on your build process?
The text was updated successfully, but these errors were encountered: