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:
1818 - uses : ./.github/actions/setup
1919
2020 - name : Bump and Tag
21+ id : bump
2122 run : |
2223 git config user.email "github-actions@users.noreply.github.com"
2324 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"
2528 git push
2629 git push --tags
2730
5962 run : curl -X POST -i ${{ secrets.UPDATE_PROD_WEBHOOK }}
6063
6164 - 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
22WORKDIR /app
33COPY package.json package.json
44COPY bun.lockb bun.lockb
5- RUN bun install --production
5+ RUN bun install --production --ignore-scripts
66COPY . .
77ENTRYPOINT ["bun" , "src/index.ts" ]
You can’t perform that action at this time.
0 commit comments