enable lfs support in dotnet workflow (#2483)

* enable lfs support in dotnet workflow

* Update dotnet-release.yml

* Update dotnet-build.yml
This commit is contained in:
Xiaoyun Zhang 2024-04-23 10:25:11 -07:00 committed by GitHub
parent 7f1a810630
commit 2daae42708
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 2 deletions

View File

@ -22,13 +22,15 @@ permissions:
jobs: jobs:
build: build:
name: Build name: Dotnet Build
runs-on: ubuntu-latest runs-on: ubuntu-latest
defaults: defaults:
run: run:
working-directory: dotnet working-directory: dotnet
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with:
lfs: true
- name: Setup .NET - name: Setup .NET
uses: actions/setup-dotnet@v4 uses: actions/setup-dotnet@v4
with: with:
@ -54,6 +56,8 @@ jobs:
needs: build needs: build
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with:
lfs: true
- name: Setup .NET - name: Setup .NET
uses: actions/setup-dotnet@v4 uses: actions/setup-dotnet@v4
with: with:

View File

@ -27,6 +27,8 @@ jobs:
working-directory: dotnet working-directory: dotnet
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with:
lfs: true
- name: Setup .NET - name: Setup .NET
uses: actions/setup-dotnet@v4 uses: actions/setup-dotnet@v4
with: with: