From 52038b31969ed576b84b7e9822c23906329004b7 Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Thu, 13 Feb 2025 19:58:08 -0600 Subject: [PATCH] chore: include lfs files when checking out repo in workflow --- .github/workflows/publish.yml | 2 ++ .github/workflows/pull_request.yml | 12 ++++++++++++ 2 files changed, 14 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7f8b8c9..42a6fc3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -19,6 +19,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 with: + lfs: true fetch-depth: 0 token: ${{ secrets.ACTIONS_PAT }} - name: Setup .NET 9 @@ -58,6 +59,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 with: + lfs: true fetch-depth: 0 ref: ${{ github.ref }} token: ${{ secrets.ACTIONS_PAT }} diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 0f26be3..022ebfa 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -20,6 +20,10 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 + with: + lfs: true + fetch-depth: 0 + token: ${{ secrets.ACTIONS_PAT }} - name: Setup .NET uses: actions/setup-dotnet@v4 with: @@ -48,6 +52,10 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 + with: + lfs: true + fetch-depth: 0 + token: ${{ secrets.ACTIONS_PAT }} - name: Setup .NET 9 uses: actions/setup-dotnet@v4 with: @@ -74,6 +82,10 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 + with: + lfs: true + fetch-depth: 0 + token: ${{ secrets.ACTIONS_PAT }} - name: Download ubuntu-latest report uses: actions/download-artifact@v4 with: