hotfix attempt for not allowing artifact uploads when testing

This commit is contained in:
DJ2LS 2022-11-25 15:59:07 +01:00
parent cb8b81e5a7
commit 0d49340d7e
3 changed files with 6 additions and 2 deletions

View file

@ -422,6 +422,7 @@ jobs:
- name: Upload TNC artifacts
uses: actions/upload-artifact@v3
if: ${{!startsWith(github.ref, 'refs/tags/v')}}
with:
name: ${{ matrix.zip_name }}.zip
# path: ./tnc/dist/tnc/${{ matrix.zip_name }}.zip
@ -435,7 +436,10 @@ jobs:
- name: Upload App bundle artifacts
uses: actions/upload-artifact@v3
if: ${{!startsWith(github.ref, 'refs/tags/v')}}
with:
name: app_bundle_${{ matrix.os }}.zip
# path: ./tnc/dist/tnc/${{ matrix.zip_name }}.zip
path: ./gui/dist/*
build_tnc_standalone:

View file

@ -1,6 +1,6 @@
{
"name": "FreeDATA",
"version": "0.6.5-alpha.1",
"version": "0.6.5-alpha.2",
"description": "FreeDATA ",
"main": "main.js",
"scripts": {

View file

@ -11,7 +11,7 @@ Not nice, suggestions are appreciated :-)
import subprocess
from enum import Enum
VERSION = "0.6.5-alpha.1"
VERSION = "0.6.5-alpha.2"
ENABLE_EXPLORER = False