File tree 2 files changed +5
-7
lines changed
2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -22,18 +22,16 @@ jobs:
22
22
- name : Install dependencies
23
23
run : dotnet restore --force
24
24
25
- - name : Compute Scalar Version
25
+ - name : Build Linux packages
26
26
run : |
27
27
BRANCH=$(git branch --show-current)
28
28
if [ "${BRANCH:0:9}" = "releases/" ]; then
29
29
SCALARVERSION="${BRANCH:9}".0
30
30
else
31
31
SCALARVERSION=0.3.132.0
32
32
fi
33
- export SCALARVERSION
34
-
35
- - name : Build Linux packages
36
- run : dotnet publish -c Release -p:ScalarVersion=$SCALARVERSION 'Scalar.Packaging.Linux/Scalar.Packaging.Linux.csproj'
33
+ echo $SCALARVERSION
34
+ dotnet publish -c Release -p:ScalarVersion=$SCALARVERSION 'Scalar.Packaging.Linux/Scalar.Packaging.Linux.csproj'
37
35
38
36
# Because the actions/upload-artifact action does not allow you to specify
39
37
# relative file paths we must first use a shell script to copy the
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ name: Scalar
2
2
3
3
on :
4
4
push :
5
- branches : [ main ]
5
+ branches : [ main, releases/* ]
6
6
pull_request :
7
- branches : [ main ]
7
+ branches : [ main, releases/* ]
8
8
9
9
jobs :
10
10
validate_scalar :
You can’t perform that action at this time.
0 commit comments