Commit a730cb1 1 parent 3127c71 commit a730cb1 Copy full SHA for a730cb1
File tree 2 files changed +2
-6
lines changed
2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change 32
32
echo "should_publish=true" >> $GITHUB_ENV
33
33
fi
34
34
35
- # Stop if no changes detected
36
- - name : Stop if no changes
37
- if : ${{ env.should_publish == 'false' }}
38
- run : exit 0
39
-
40
35
# install node (for npm utils)
41
36
- name : Install node for npm checks
42
37
uses : actions/setup-node@v4
88
83
89
84
# install and publish if local version is not the same as published
90
85
- name : publish
91
- if : ${{ steps.versions.outputs.current != steps.versions.outputs.new }}
86
+ if : ${{ env.should_publish == 'true' }}
92
87
working-directory : ./packages/litlytics
93
88
run : bun publish --access public --tag next
94
89
env :
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ ENV NODE_ENV=production
6
6
WORKDIR /app
7
7
# install deps
8
8
ADD package.json bun.lockb ./
9
+ COPY ./packages/litlytics ./packages/litlytics
9
10
RUN bun install --frozen-lockfile --ignore-scripts
10
11
11
12
# build app
You can’t perform that action at this time.
0 commit comments