Skip to content

Commit

Permalink
ci: install dotnet
Browse files Browse the repository at this point in the history
  • Loading branch information
Alxandr committed Oct 10, 2024
1 parent 12d16b8 commit 0ae8f39
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 13 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/_deploy-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
- uses: actions/checkout@v4
name: Checkout repository

- name: Install .NET
uses: actions/setup-dotnet@v4

- uses: pnpm/action-setup@v3
with:
version: 9
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/_find-verticals.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ jobs:

steps:
- uses: actions/checkout@v4

- name: Install .NET
uses: actions/setup-dotnet@v4

- uses: pnpm/action-setup@v3
with:
version: 9
Expand Down
7 changes: 1 addition & 6 deletions .github/workflows/pr-apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ on:
- .github/workflows/apps-*
- .github/workflows/infra-*

env:
DOTNET_VERSION: 8.0.x

jobs:
find-verticals:
uses: ./.github/workflows/_find-verticals.yml
Expand All @@ -25,10 +22,8 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Install .NET ${{ env.DOTNET_VERSION }}
- name: Install .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

- name: Build
working-directory: ${{ matrix.path }}
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/pr-check-slns.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ jobs:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.0.x

- uses: actions/setup-node@v4
with:
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/pr-libs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,8 @@ jobs:

steps:
- uses: actions/checkout@v4

- name: Install .NET ${{ env.DOTNET_VERSION }}
- name: Install .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

- name: Build
working-directory: ${{ matrix.path }}
Expand Down

0 comments on commit 0ae8f39

Please sign in to comment.