We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eff4637 + 36e0318 commit add7c95Copy full SHA for add7c95
.github/workflows/linux-ubuntu-20.04-qt5-appimage.yml
@@ -12,6 +12,7 @@ on:
12
- scripts/docker/**
13
branches:
14
- master
15
+ workflow_dispatch:
16
17
jobs:
18
build:
@@ -61,9 +62,15 @@ jobs:
61
62
echo "--------------------------------------------------------------"
63
echo "building desktop"
64
65
+ BUILD_EXTRA_ARGS=""
66
+ if [ ${GITHUB_EVENT_NAME} == "push" ]; then
67
+ echo "Building a release version"
68
+ BUILD_EXTRA_ARGS="${BUILD_EXTRA_ARGS} -release"
69
+ fi
70
+
71
# now build the appimage
72
cd ..
- bash -e -x subsurface/scripts/build.sh -desktop -create-appdir -build-with-webkit
73
+ bash -e -x subsurface/scripts/build.sh -desktop -create-appdir -build-with-webkit ${BUILD_EXTRA_ARGS}
74
75
- name: test desktop build
76
run: |
0 commit comments