-
-
Notifications
You must be signed in to change notification settings - Fork 260
31 lines (27 loc) · 613 Bytes
/
bin.yaml
File metadata and controls
31 lines (27 loc) · 613 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
name: Bin
on:
push:
paths:
- build/**
pull_request:
paths:
- build/**
workflow_dispatch:
inputs:
jobs:
build:
name: "Build bin"
runs-on: ubuntu-latest
container: registry.gitlab.com/fdroid/fdroidserver:buildserver-bookworm
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Build
run: bash -e -x build/build_bin.sh all all 1> /dev/null
- name: Upload
uses: actions/upload-artifact@v4
with:
name: Bin
path: '**/build_bin/built_in/**/bin.zip'