Skip to content

Commit c2350ef

Browse files
committed
refactor: Update workflow to use Yarn for package installation
1 parent f700521 commit c2350ef

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,26 +18,23 @@ jobs:
1818
- name: Checkout
1919
uses: actions/checkout@v4
2020

21-
- name: Setup Bun
22-
uses: oven-sh/setup-bun@v2
23-
2421
- name: Install LTS node
2522
uses: actions/setup-node@v4
2623
with:
2724
node-version: 'lts/*'
28-
29-
- name: Install Yarn v4
30-
run: yarn set version berry
25+
26+
- name: Install Yarn
27+
run: npm install -g yarn
3128

3229
- name: Install Dependencies
33-
run: bun i --dev
30+
run: yarn install
3431

3532
# Authenticate with ghcr.io
3633
- name: Authenticate with ghcr.io
3734
run: echo "${{ secrets.GH_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
3835

3936
- name: Semantic Release
40-
run: bunx semantic-release
37+
run: npx semantic-release
4138
env:
4239
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
4340
GH_TOKEN: ${{ secrets.GH_TOKEN }}

0 commit comments

Comments
 (0)