-
Notifications
You must be signed in to change notification settings - Fork 2
40 lines (35 loc) · 1.09 KB
/
hiui-release.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
name: hiui-release
on:
push:
tags:
- '*'
jobs:
build:
name: Build ${{ matrix.arch }} ipk
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
arch:
- mips_24kc
- mipsel_24kc
- mvebu-cortexa53
version: [19.07.8]
steps:
- uses: actions/checkout@v3
- run: echo "PKGS=$(ls $GITHUB_WORKSPACE/applications/|tr '\n' ' ')" >> $GITHUB_ENV
- name: Build
uses: innet8/gh-action-sdk@master
env:
ARCH: ${{ matrix.arch }}-${{ matrix.version }}
MODE: all
FEEDNAME: hiui
PACKAGES: hiui-ui-core hiui-rpc-core ${{env.PKGS}}
CHECKS: no
V: s
- name: Release and Upload Assets
uses: softprops/action-gh-release@v1
with:
files: 'hiui*.ipk'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}