File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed
Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -22,18 +22,16 @@ jobs:
2222 - name : Install dependencies
2323 run : dotnet restore --force
2424
25- - name : Compute Scalar Version
25+ - name : Build Linux packages
2626 run : |
2727 BRANCH=$(git branch --show-current)
2828 if [ "${BRANCH:0:9}" = "releases/" ]; then
2929 SCALARVERSION="${BRANCH:9}".0
3030 else
3131 SCALARVERSION=0.3.132.0
3232 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'
3735
3836 # Because the actions/upload-artifact action does not allow you to specify
3937 # 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
22
33on :
44 push :
5- branches : [ main ]
5+ branches : [ main, releases/* ]
66 pull_request :
7- branches : [ main ]
7+ branches : [ main, releases/* ]
88
99jobs :
1010 validate_scalar :
You can’t perform that action at this time.
0 commit comments