Skip to content

Commit

Permalink
Update github action
Browse files Browse the repository at this point in the history
  • Loading branch information
eBaeza committed Aug 25, 2024
1 parent f03de21 commit a12f244
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions .github/workflows/dotnet6.yml → .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: .NET6
name: .NET8

on:
release:
types: [ published ]
branches: [ master ]
types: [published]
branches: [master]

jobs:

Expand All @@ -13,8 +13,7 @@ jobs:
matrix:
configuration: [Release]

runs-on: windows-latest # For a list of available runner types, refer to
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
runs-on: windows-latest

env:
Solution_Name: Resource Manager.sln # Replace with your solution name, i.e. MyWpfApp.sln.
Expand All @@ -24,19 +23,19 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v1
# Install the .NET 8 SDK
- name: Install .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.x

# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v1.0.2
uses: microsoft/setup-msbuild@v1.1.3

# Execute all unit tests in the solution
# - name: Execute unit tests
Expand All @@ -49,4 +48,4 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: ResourceManager
path: bin
path: bin

0 comments on commit a12f244

Please sign in to comment.