2024-01-30 20:41:53 +00:00
|
|
|
name: Build and Release NSIS Installer
|
|
|
|
on: [push]
|
2024-01-30 20:41:25 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-and-release:
|
|
|
|
runs-on: windows-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Check out repository
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Set up Python 3.11
|
|
|
|
uses: actions/setup-python@v5
|
|
|
|
with:
|
|
|
|
python-version: "3.11"
|
|
|
|
|
|
|
|
- name: Install Python dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -r requirements.txt
|
|
|
|
|
2024-02-10 20:36:14 +00:00
|
|
|
- uses: robinraju/release-downloader@v1.9
|
|
|
|
with:
|
|
|
|
repository: "Hamlib/Hamlib"
|
|
|
|
fileName: " hamlib-w32-*.zip"
|
|
|
|
latest: true
|
|
|
|
extract: true
|
|
|
|
out-file-path: "modem/lib/hamlib/"
|
|
|
|
|
|
|
|
- uses: robinraju/release-downloader@v1.9
|
|
|
|
with:
|
|
|
|
repository: "Hamlib/Hamlib"
|
|
|
|
fileName: " hamlib-w64-*.zip"
|
|
|
|
latest: true
|
|
|
|
extract: true
|
|
|
|
out-file-path: "modem/lib/hamlib/"
|
|
|
|
|
2024-01-30 20:41:25 +00:00
|
|
|
- name: Build binaries
|
|
|
|
working-directory: modem
|
|
|
|
run: |
|
|
|
|
python3 -m nuitka --remove-output --assume-yes-for-downloads --follow-imports --include-data-dir=lib=lib --include-data-files=lib/codec2/*=lib/codec2/ --include-data-files=config.ini.example=config.ini --standalone server.py --output-filename=freedata-server
|
|
|
|
|
2024-01-30 21:12:45 +00:00
|
|
|
- name: LIST ALL FILES
|
|
|
|
run: ls -R
|
|
|
|
|
2024-01-30 20:41:25 +00:00
|
|
|
- name: Create installer
|
|
|
|
uses: joncloud/makensis-action@v4
|
|
|
|
with:
|
|
|
|
script-file: "freedata-server-nsis-config.nsi"
|
2024-01-31 09:21:54 +00:00
|
|
|
arguments: '/V3'
|
2024-01-30 20:41:25 +00:00
|
|
|
|
2024-01-30 21:12:45 +00:00
|
|
|
- name: LIST ALL FILES
|
|
|
|
run: ls -R
|
|
|
|
|
2024-01-30 20:41:25 +00:00
|
|
|
- name: Upload artifact
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: 'FreeData-Server-Installer'
|
2024-01-30 21:12:45 +00:00
|
|
|
path: ./FreeData-Server-Installer.exe
|
2024-01-30 20:41:25 +00:00
|
|
|
|
|
|
|
- name: Upload Installer to Release
|
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
|
|
|
with:
|
|
|
|
draft: true
|
|
|
|
files: ./FreeData-Server-Installer.exe
|