forked from ucsc/ucsc-gutenberg-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (28 loc) · 812 Bytes
/
release.yml
File metadata and controls
36 lines (28 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Build and release
on:
push:
tags:
- 'v*.*.*'
- 'v*.*.*-rc.*'
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3.3.0
with:
node-version: 14
cache: 'npm'
- name: Install Node dependencies
run: npm install
- name: Build theme
run: npm run build
- name: Package theme
run: ./node_modules/.bin/wp-scripts plugin-zip
- name: Release
uses: softprops/action-gh-release@v1
with:
files: ucsc-service-blocks.zip
generate_release_notes: true