Skip to content

Commit f218112

Browse files
authored
Create main.yml
1 parent 1b4a080 commit f218112

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/main.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
jobs:
9+
release:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v2
14+
15+
- name: Setup Node.js environment
16+
uses: actions/setup-node@v2.1.2
17+
with:
18+
node-version: 12.x
19+
20+
- name: Build the plugin
21+
run: |
22+
yarn build
23+

0 commit comments

Comments
 (0)