-
-
Notifications
You must be signed in to change notification settings - Fork 54
51 lines (43 loc) · 1.32 KB
/
build_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
41
42
43
44
45
46
47
48
49
50
51
name: Generate release zips
on:
workflow_dispatch:
# push:
# branches: [ main ]
# paths-ignore:
# - '**.md'
# pull_request:
# paths-ignore:
# - '**.md'
jobs:
package:
runs-on: ubuntu-latest
steps:
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Install Dependencies
run: |
sudo apt-get update && sudo apt-get install --yes --no-install-recommends ffmpeg
pip3 install ffmpeg-normalize
- name: Check out the repo
uses: actions/checkout@v4
- name: Run build checks
run: ./build-checks.py
- name: Set VERSION if tagged build
if: startsWith(github.event.ref, 'refs/tags/v')
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV
- name: Build the release zip packages
if: github.event_name != 'pull_request'
run: ./release.sh
- name: Upload binaries to release
uses: crowbarmaster/GH-Automatic-Releases@latest
if: github.event_name != 'pull_request'
with:
title: "Latest"
repo_token: "${{ secrets.GITHUB_TOKEN }}"
files: |
release/edgetx-sdcard-sounds-*.zip
sounds.json
automatic_release_tag: 'latest'
prerelease: true