Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

VDS-422: Add setup-dotnet step #49

Merged
merged 3 commits into from
Dec 17, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# v1.1.1.vc-demo-storefront
# v1.1.2.vc-demo-storefront
name: Storefront CI

# Controls when the action will run. Triggers the workflow on push or pull request
Expand Down Expand Up @@ -47,6 +47,11 @@ jobs:
with:
java-version: 1.11

- name: Set up .net Core 3.1.x for vc-build #GitHib Actions migrates to .net Core 5.x. To vc-build work properly need to manually install .net Core 3.1.x
uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.x'

- uses: actions/checkout@v2
with:
fetch-depth: 0
Expand Down