We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11bc8e6 commit 2c237afCopy full SHA for 2c237af
.github/workflows/release.yml
@@ -15,15 +15,14 @@ jobs:
15
16
steps:
17
- uses: actions/checkout@v3
18
- - name: Use Node.js
19
- uses: actions/setup-node@v3
+ - uses: oven-sh/setup-bun@v1
20
with:
21
- node-version: '18.x' # You might need to adjust this value to your own version
+ bun-version: latest
22
- name: Build
23
id: build
24
run: |
25
- yarn
26
- yarn run build --if-present
+ bun install
+ bun run build
27
mkdir ${{ env.PLUGIN_NAME }}
28
cp main.js manifest.json styles.css ${{ env.PLUGIN_NAME }}
29
zip -r ${{ env.PLUGIN_NAME }}.zip ${{ env.PLUGIN_NAME }}
0 commit comments