Skip to content

Commit a3141a9

Browse files
committed
chore: update packages lock files for proper architecture
1 parent d5546a7 commit a3141a9

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/workflows/release.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
build_and_release:
88
name: Build and release
9-
runs-on: ubuntu-latest
9+
runs-on: windows-latest
1010
permissions:
1111
contents: write
1212
env:
@@ -20,6 +20,7 @@ jobs:
2020
id: version
2121
env:
2222
GH_TOKEN: ${{ github.token }}
23+
shell: bash
2324
run: |
2425
today=$(date +'%Y.%m.%d')
2526
default_version="v${today}.0"
@@ -50,6 +51,7 @@ jobs:
5051
5152
- name: Clean version string
5253
id: clean_version
54+
shell: bash
5355
run: |
5456
VERSION="${{ steps.version.outputs.version }}"
5557
@@ -70,6 +72,7 @@ jobs:
7072
7173
- name: "Update .csproj FileVersion"
7274
if: success()
75+
shell: bash
7376
run: |
7477
CLEAN_VERSION="${{ steps.clean_version.outputs.CLEAN_VERSION }}"
7578
@@ -91,6 +94,7 @@ jobs:
9194
done
9295
9396
- name: Move repository setup.ps1 to aspx/wwwroot so it is included in the release archive
97+
shell: bash
9498
run: |
9599
mv setup.ps1 aspx/wwwroot/setup.ps1
96100
@@ -138,6 +142,7 @@ jobs:
138142
run: dotnet build RAWeb.sln --configuration Release --no-restore
139143

140144
- name: Replace App_Code and bin directories with build output
145+
shell: bash
141146
run: |
142147
rm -rf aspx/wwwroot/App_Code
143148
rm -rf aspx/wwwroot/bin
@@ -151,6 +156,7 @@ jobs:
151156
filename: "../../raweb_${{ steps.version.outputs.version }}.zip"
152157

153158
- name: Write release install.ps1
159+
shell: bash
154160
run: |
155161
cat <<EOF > "install.ps1"
156162
[CmdletBinding()]

dotnet/RAWeb.Server.Management.ServiceHost/RAWeb.Server.Management.ServiceHost.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>net462</TargetFramework>
5+
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
56
<LangVersion>13.0</LangVersion>
67
<OutputType>WinExe</OutputType>
78
<ImplicitUsings>disable</ImplicitUsings>

dotnet/RAWeb.Server.Management.ServiceHost/packages.lock.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
}
2121
}
2222
},
23-
".NETFramework,Version=v4.6.2/win-x86": {}
23+
".NETFramework,Version=v4.6.2/win-x64": {}
2424
}
2525
}

0 commit comments

Comments
 (0)