mirror of
https://github.com/rbreu/beeref.git
synced 2026-03-11 08:54:28 +00:00
25 lines
584 B
YAML
25 lines
584 B
YAML
name: build_appimage
|
|
|
|
on: workflow_dispatch
|
|
|
|
jobs:
|
|
|
|
build_appimage:
|
|
name: build_appimage
|
|
|
|
runs-on: 'ubuntu-20.04'
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python 3.11
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: 3.11
|
|
- name: Build appimage
|
|
run: |
|
|
python3 tools/build_appimage.py --version=${{ github.ref_name }} --jsonfile=tools/linux_libs.json
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
path: BeeRef*.appimage
|
|
retention-days: 5
|