-
Notifications
You must be signed in to change notification settings - Fork 6
48 lines (40 loc) · 1.11 KB
/
test.yml
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
37
38
39
40
41
42
43
44
45
46
47
48
name: Deploy
on:
pull_request:
branches:
- feature/mozart-deps
push:
branches:
- feature/mozart-deps
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install npm packages
run: |
npm i
- name: Semantic release
id: semantic
uses: cycjimmy/semantic-release-action@v2
with:
semantic_version: 17
branches: |
['master']
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Set env
if: steps.semantic.outputs.new_release_published == 'true'
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- name: Build release
if: steps.semantic.outputs.new_release_published == 'true'
shell: bash
run: |
npm run plugin-zip
- name: Release
if: steps.semantic.outputs.new_release_published == 'true'
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ steps.semantic.outputs.new_release_version }}
files: |
build/wc-cart-pdf.zip