Skip to content

Commit d2c5570

Browse files
committed
Actions: update installer build
Signed-off-by: Derrick Stolee <[email protected]>
1 parent 5dfc803 commit d2c5570

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

.github/workflows/build-installers.yml

+3-5
Original file line numberDiff line numberDiff 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

.github/workflows/continuous-integration.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Scalar
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ main, releases/* ]
66
pull_request:
7-
branches: [ main ]
7+
branches: [ main, releases/* ]
88

99
jobs:
1010
validate_scalar:

0 commit comments

Comments
 (0)