upload app bundle artifacts and version increment

This commit is contained in:
dj2ls 2022-09-12 09:16:28 +02:00
parent 19d1f69a27
commit f8c72d2b6b
2 changed files with 13 additions and 2 deletions

View file

@ -389,3 +389,14 @@ jobs:
release: ${{ startsWith(github.ref, 'refs/tags/v') }}
args: "-p always"
- name: LIST ALL FILES
shell: bash
run: |
ls -R
- name: Upload App bundle artifacts
uses: actions/upload-artifact@v3
with:
name: app_bundle_${{ matrix.os }}.zip
#path: ./tnc/dist/tnc/${{ matrix.zip_name }}.zip
path: ./gui/dist/*

View file

@ -11,7 +11,7 @@ Not nice, suggestions are appreciated :-)
import subprocess
from enum import Enum
VERSION = "0.4.3-alpha"
VERSION = "0.5.0-alpha"
# DAEMON
DAEMONPORT: int = 3001
@ -85,7 +85,7 @@ ENABLE_FFT: bool = False
CHANNEL_BUSY: bool = False
# ARQ PROTOCOL VERSION
ARQ_PROTOCOL_VERSION: int = 1
ARQ_PROTOCOL_VERSION: int = 2
# ARQ statistics
ARQ_BYTES_PER_MINUTE_BURST: int = 0