Skip to content

Commit

Permalink
Add lfs to build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
XanatosX committed Oct 5, 2023
1 parent 7d8d6ae commit a85d83e
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/CheckPullRequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ jobs:
steps:
- name: Clone repository
uses: actions/checkout@v2
with:
lfs: true
- name: Restore
run: dotnet restore
shell: powershell
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/CreateLiveBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
steps:
- name: Clone repository
uses: actions/checkout@v2
with:
lfs: true
- name: Get release tag
run: echo "RELEASE_VERSION=$(($env:GITHUB_REF -split '/')[-1] -replace ' ','')" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append
- name: Check release version
Expand Down Expand Up @@ -49,6 +51,8 @@ jobs:
steps:
- name: Clone repository
uses: actions/checkout@v2
with:
lfs: true
- name: Get release tag
run: echo "RELEASE_VERSION=$(($env:GITHUB_REF -split '/')[-1] -replace ' ','')" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append
- name: Check release version
Expand Down Expand Up @@ -86,6 +90,8 @@ jobs:
steps:
- name: Clone repository
uses: actions/checkout@v2
with:
lfs: true
- name: Get release tag
run: echo "RELEASE_VERSION=$(($env:GITHUB_REF -split '/')[-1] -replace ' ','')" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append
- name: Check release version
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/LatestBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:
steps:
- name: Clone repository
uses: actions/checkout@v2
with:
lfs: true
- name: Install nuget
uses: nuget/setup-nuget@v1
- name: Nuget restore
Expand Down Expand Up @@ -53,6 +55,8 @@ jobs:
steps:
- name: Clone repository
uses: actions/checkout@v2
with:
lfs: true
- name: Build project
run: |
dotnet publish .\src\XmlFormatterOsIndependent\ -c Release -r win-x64 --self-contained true
Expand Down Expand Up @@ -82,6 +86,8 @@ jobs:
steps:
- name: Clone repository
uses: actions/checkout@v2
with:
lfs: true
- name: Build project
run: |
dotnet publish .\src\XmlFormatterOsIndependent\ -c Release -r linux-x64 --self-contained true
Expand Down Expand Up @@ -111,6 +117,8 @@ jobs:
steps:
- name: Clone repository
uses: actions/checkout@v2
with:
lfs: true
- name: Build project
run: |
dotnet publish .\src\XmlFormatterOsIndependent\ -c Release -r osx-x64 --self-contained true
Expand Down Expand Up @@ -266,6 +274,7 @@ jobs:
- uses: actions/checkout@v3
with:
ref: ${{ env.REF_CHECKOUT_BRANCH }}
lfs: true
- name: Download artifacts
uses: actions/download-artifact@v2
with:
Expand Down

0 comments on commit a85d83e

Please sign in to comment.