File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -18,10 +18,13 @@ jobs:
18
18
- uses : ./.github/actions/setup
19
19
20
20
- name : Bump and Tag
21
+ id : bump
21
22
run : |
22
23
git config user.email "github-actions@users.noreply.github.com"
23
24
git config user.name "GitHub Actions"
24
- pnpx changelogen@latest --release
25
+ bunx changelogen@latest --release
26
+ VERSION=$(jq -r '.version' package.json)
27
+ echo "version=$VERSION" >> "$GITHUB_OUTPUT"
25
28
git push
26
29
git push --tags
27
30
59
62
run : curl -X POST -i ${{ secrets.UPDATE_PROD_WEBHOOK }}
60
63
61
64
- name : GitHub Release
62
- run : pnpx changelogen@latest gh release --token ${{ secrets.GITHUB_TOKEN }}
65
+ run : bunx changelogen@latest gh release --token ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ FROM oven/bun AS base
2
2
WORKDIR /app
3
3
COPY package.json package.json
4
4
COPY bun.lockb bun.lockb
5
- RUN bun install --production
5
+ RUN bun install --production --ignore-scripts
6
6
COPY . .
7
7
ENTRYPOINT ["bun" , "src/index.ts" ]
You can’t perform that action at this time.
0 commit comments