File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed
Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff 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 }}
You can’t perform that action at this time.
0 commit comments