-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (40 loc) · 1.21 KB
/
build-bootstrap.yaml
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
name: Build bootstrap
on: [workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Fix permissions
run: sudo chown -R $USER:$USER /home/runner/work/linux-dev
- name: Checkout the code
uses: actions/checkout@v3
with:
submodules: true
- name: Install Depends
run: ./install.sh
- name: Build Alpine
run: |
cd android-linux-bootstrap/scripts
./alpine-bootstraps.sh
- name: Alpine Linux Release
uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: ${{ secrets.TOKEN_GITHUB }}
automatic_release_tag: "latest-alpine"
prerelease: false
title: "Alpine"
files: |
./scripts/build/*.zip
- name: Build Ubuntu
run: |
cd android-linux-bootstrap/scripts
./ubuntu-bootstraps.sh
- name: Ubuntu Linux Release
uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: ${{ secrets.TOKEN_GITHUB }}
automatic_release_tag: "latest-ubuntu"
prerelease: false
title: "Ubuntu"
files: |
./scripts/build/*.zip