Skip to content

Commit

Permalink
Update github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
nilproject committed Mar 15, 2023
1 parent 390e31f commit 20b03a4
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 17 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,19 @@ jobs:
with:
submodules: true

- name: Install .NET Core 7.0
- name: Install .NET Core 3.1
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
dotnet-version: 3.1.x

- name: Install .NET Core 3.1
- name: Install .NET Core 7.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.x
dotnet-version: 7.0.x

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

- name: Decode the snk
run: |
Expand Down
26 changes: 13 additions & 13 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,33 +67,33 @@ jobs:
fetch-depth: 0
submodules: true

# Install the .NET Core 7.0
- name: Install .NET Core 7.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x

# Install the .NET Core 6.0
- name: Install .NET Core 6.0
# Install the .NET Core 3.1
- name: Install .NET Core 3.1
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
dotnet-version: 3.1.x

# Install the .NET Core 5.0
- name: Install .NET Core 5.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x

# Install the .NET Core 3.1
- name: Install .NET Core 3.1
# Install the .NET Core 6.0
- name: Install .NET Core 6.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.x
dotnet-version: 6.0.x

# Install the .NET Core 7.0
- name: Install .NET Core 7.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.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.3.1

# Decode the base 64 encoded pfx and save the Signing_Certificate
- name: Decode the snk
Expand Down

0 comments on commit 20b03a4

Please sign in to comment.