Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
icealtria committed Jun 15, 2024
1 parent 7e825d5 commit 2d5de21
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
30 changes: 30 additions & 0 deletions .github/workflows/builid.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: release plugin

on:
push:
branches:
- master
workflow_dispatch:

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'

- uses: pnpm/action-setup@v4
with:
version: 9
run_install: true

- name: Build
run: pnpm build

9 changes: 8 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,16 @@ jobs:

steps:
- uses: actions/checkout@v4

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'

- uses: pnpm/action-setup@v4
with:
version: 8
version: 9
run_install: true

- name: Build
Expand Down

0 comments on commit 2d5de21

Please sign in to comment.