updated build action

new day ...
This commit is contained in:
dj2ls 2022-02-25 10:29:38 +01:00
parent cd7ab90bc1
commit 80a23da83a
4 changed files with 20 additions and 22 deletions

View file

@ -1,8 +1,8 @@
name: Linux Nightly
name: Linux
on:
push:
#tags:
#- '*'
tags:
- 'v*'
jobs:
build_linux_release:
@ -118,9 +118,10 @@ jobs:
# If the commit is tagged with a version (e.g. "v1.0.0"),
# release the app after building
release: ${{ startsWith(github.ref, 'refs/tags/v') }}
args: "-p always"
- name: Release TNC
- name: Release TNC
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/v')
with:

View file

@ -1,8 +1,8 @@
name: macOS Nightly
name: macOS
on:
push:
#tags:
#- '*'
tags:
- 'v*'
jobs:
build_linux_release:
@ -106,7 +106,8 @@ jobs:
# If the commit is tagged with a version (e.g. "v1.0.0"),
# release the app after building
release: ${{ startsWith(github.ref, 'refs/tags/v') }}
args: "-p always"
- name: Release TNC
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/v')

View file

@ -1,8 +1,8 @@
name: Windows Nightly
name: Windows
on:
push:
#tags:
#- '*'
tags:
- 'v*'
jobs:
@ -106,7 +106,8 @@ jobs:
# If the commit is tagged with a version (e.g. "v1.0.0"),
# release the app after building
release: ${{ startsWith(github.ref, 'refs/tags/v') }}
args: "-p always"
- name: Release TNC
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/v')

View file

@ -1,6 +1,6 @@
{
"name": "FreeDATA",
"version": "v0.0.1-alpha.17",
"version": "v0.0.1-alpha.18",
"description": "FreeDATA ",
"main": "main.js",
"scripts": {
@ -48,9 +48,6 @@
"output": "dist"
},
"dmg": {
"publish": [
"github"
],
"icon": "src/icon.png",
"contents": [
{
@ -66,24 +63,22 @@
]
},
"win": {
"publish": [
"github"
],
"icon": "src/icon.png",
"target": [
"nsis"
]
},
"linux": {
"publish": [
"github"
],
"icon": "src/icon.png",
"target": [
"AppImage"
],
"category": "Development"
},
"publish":{
"provider": "github",
"releaseType": "release"
},
"extraResources": [
"./tnc/**"
]