Browse Source

FIX: add more dotnet setup (#3181)

* UPDATE: move dotnet setup to run before checkout
pull/3190/head
Opeyemi 2 years ago committed by GitHub
parent
commit
9d4b98e787
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      .github/workflows/build.yml

10
.github/workflows/build.yml

@ -138,6 +138,11 @@ jobs: @@ -138,6 +138,11 @@ jobs:
base_path: ./bitwarden_license/src
node: true
steps:
- name: Set up dotnet
uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 # v3.2.0
with:
dotnet-version: "6.0.x"
- name: Checkout repo
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
@ -478,6 +483,11 @@ jobs: @@ -478,6 +483,11 @@ jobs:
- linux-x64
- win-x64
steps:
- name: Set up dotnet
uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 # v3.2.0
with:
dotnet-version: "6.0.x"
- name: Checkout repo
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3

Loading…
Cancel
Save