Skip to content

Commit 41e2c69

Browse files
authored
Fix Release Action (#1023)
The release action failed due to mis placed install action. It should be called after checkout.
1 parent 31cf306 commit 41e2c69

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

.github/actions/install/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ runs:
5959

6060

6161
- name: Install .NET #on Windows
62-
#if: inputs.dotnet == 'true' && inputs.os == 'windows-latest'
62+
if: inputs.dotnet == 'true' # && inputs.os == 'windows-latest'
6363
uses: actions/setup-dotnet@v5
6464
with:
6565
dotnet-version: |

.github/workflows/build-release.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -285,15 +285,7 @@ jobs:
285285
needs: [ analyze, build-release ]
286286
if: needs.analyze.outputs.todo == 'release'
287287

288-
steps:
289-
290-
# Install our environment
291-
- name: Install environment
292-
uses: ./.github/actions/install
293-
with:
294-
os: ubuntu-latest
295-
dotnet: true
296-
java: false
288+
steps:
297289

298290
# checkout the hazelcast/hazelcast-csharp-client repository
299291
- name: Checkout code

0 commit comments

Comments
 (0)