We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6af6cf commit a48d6d4Copy full SHA for a48d6d4
1 file changed
.github/workflows/build-deb-qt5-amd64.yml
@@ -44,9 +44,7 @@ jobs:
44
run: |
45
FULL_VERSION=$(grep -oP 'VERSION\s+\K[0-9]+\.[0-9]+\.[0-9]+' omodsim/CMakeLists.txt)
46
47
- if [ ! -z "${{ github.event.inputs.tag }}" ]; then
48
- APP_VERSION="${{ github.event.inputs.tag }}"
49
- elif [ "${GITHUB_REF_NAME}" = "dev" ]; then
+ if [ "${GITHUB_REF_NAME}" = "dev" ] || [ "${{ github.event.inputs.branch }}" = "dev" ]; then
50
MAJOR_MINOR=$(echo "$FULL_VERSION" | cut -d. -f1,2)
51
APP_VERSION="${MAJOR_MINOR}~dev"
52
else
0 commit comments