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.
1 parent 87a25d7 commit 20d2360Copy full SHA for 20d2360
.github/workflows/build.yml
@@ -1,10 +1,18 @@
1
name: Build
2
3
env:
4
- BUILD_VERSION: "7.0.${{github.run_number}}${{startsWith(github.ref, 'refs/heads/master') && '' || '-beta'}}"
5
- BUILD_INFORMATION: "7.0.${{github.run_number}}${{startsWith(github.ref, 'refs/heads/master') && '' || '-beta'}}+Branch.${{github.ref_name}}.Sha.${{github.sha}}"
+ BUILD_VERSION: "7.0.${{github.run_number}}${{github.ref != 'refs/heads/master' && '-beta' || ''}}"
+ BUILD_INFORMATION: "7.0.${{github.run_number}}${{github.ref != 'refs/heads/master' && '-beta' || ''}}+Branch.${{github.ref_name}}.Sha.${{github.sha}}"
6
7
-on: [push, pull_request]
+on:
8
+ push:
9
+ branches:
10
+ - master
11
+ - dev
12
+ pull_request:
13
14
15
16
17
jobs:
18
build:
0 commit comments