Skip to content

Commit

Permalink
Bugfix invalid dist path from v3.1.8 (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kesin11 authored May 17, 2024
2 parents 8be9a3f + 9648790 commit d85429b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 510 deletions.
6 changes: 4 additions & 2 deletions Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,15 @@ build:
# Test publishing from local purpose
prepublish:
LOCALLY
COPY +build/dist dist/
RUN rm -rf dist
COPY +build/dist dist
RUN npm version prerelease --no-git-tag-version && \
npm publish --provenance --tag=beta

publish:
LOCALLY
ARG --required VERSION
COPY +build/dist dist/
RUN rm -rf dist
COPY +build/dist dist
RUN npm version $VERSION && \
npm publish --provenance
Loading

0 comments on commit d85429b

Please sign in to comment.