-
Notifications
You must be signed in to change notification settings - Fork 2
66 lines (56 loc) · 1.51 KB
/
build.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: Build
on:
push:
branches: [ "main", "build-test" ]
workflow_dispatch:
inputs:
release:
description: 'Make a release build'
required: false
type: boolean
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up yarn
uses: DerYeger/yarn-setup-action@master
with:
node-version: 16.14.0
- name: Build yarn
run: |
yarn build
pwd
ls -la ./dist
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Build go
run: |
go run mage.go
ls -la ./dist
- name: Zip artifacts
run: |
yarn zip
ls -la
- uses: actions/upload-artifact@v3
name: Attatch artifacts to job
with:
name: sasesp-plugin-zip-files
path: ./sasesp-plugin*.zip
retention-days: 7
- name: Bump version and push tag
if: startsWith(github.event.head_commit.message, 'release:')
id: tag_version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Create a GitHub release
if: startsWith(github.event.head_commit.message, 'release:')
uses: ncipollo/release-action@v1
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: Release ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}
artifacts: "./sasesp-plugin*.zip"