Skip to content

Commit

Permalink
And so begins the workflow commit spam....
Browse files Browse the repository at this point in the history
  • Loading branch information
insomniac-eeper authored Jun 29, 2024
1 parent 1de9981 commit 2fd68e2
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,24 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Get Sources
uses: actions/checkout@v4
with:
fetch-depth: 0
filter: tree:0

- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x

- name: Restore dependencies
run: dotnet restore
run: |
dotnet restore
dotnet tool restore
- name: Build
run: dotnet build --no-restore -c Release
run: dotnet build -c Release

- name: Upload Artifacts
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 2fd68e2

Please sign in to comment.