Skip to content

Commit

Permalink
Update building workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
acidicMercury8 committed Dec 2, 2023
1 parent b12bfe9 commit f7026e6
Showing 1 changed file with 10 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Build helpers collection'
name: 'Build collection'

on:
push:
Expand All @@ -10,12 +10,15 @@ on:

jobs:
build:
name: 'Building'
name: 'Build'

strategy:
matrix:
system: [ windows-2022 ]
config: [ Debug, Release ]
system:
- windows-2022
config:
- Debug
- Release

runs-on: ${{ matrix.system }}

Expand All @@ -28,12 +31,12 @@ jobs:
with:
fetch-depth: 0

- name: Install .NET
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'

- name: Install dependencies
- name: Restore dependencies
run: |
dotnet restore $env:Solution
Expand All @@ -48,5 +51,5 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: bin-${{ matrix.config }}-${{ github.sha }}
name: bin-(${{ matrix.config }})-(${{ github.sha }})
path: bin/${{ matrix.config }}/

0 comments on commit f7026e6

Please sign in to comment.