Skip to content

Commit b4e581c

Browse files
fix(deps): replace actions/setup-node action with semantic-release action (#448)
* chore(deps): update actions/setup-node action from vv5 to v6 * Simplify CI workflow by using Semantic Release Replaced Bun setup and installation steps with Semantic Release action. --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Dan Adajian <dadajian@expediagroup.com>
1 parent 535c27f commit b4e581c

File tree

1 file changed

+2
-15
lines changed

1 file changed

+2
-15
lines changed

.github/workflows/publish.yaml

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,8 @@ jobs:
1414
- name: Checkout
1515
uses: actions/checkout@v5
1616

17-
- name: Setup Bun
18-
uses: oven-sh/setup-bun@v2
19-
with:
20-
bun-version-file: package.json
21-
22-
- name: Setup Node
23-
uses: actions/setup-node@v5
24-
with:
25-
node-version: latest
26-
27-
- name: Install Dependencies
28-
run: bun install
29-
30-
- name: Create Release
31-
run: bunx semantic-release
17+
- name: Semantic Release
18+
uses: cycjimmy/semantic-release-action@v5
3219
env:
3320
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3421
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)