Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
release: change dotnet to .NET and loosen version requirements
Update .NET setup tasks to be titled "Set up .NET" instead of "Setup
dotnet." Additionally, change from using a specific .NET version
(6.0.201) to a more general version that aligns with the current version
in use by the project (7.0.x).
  • Loading branch information
ldennington committed Oct 10, 2023
commit 531d7ed5a4071379d17cef8a6fd19afe30ec70d0
28 changes: 14 additions & 14 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up dotnet
- name: Set up .NET
uses: actions/[email protected]
with:
dotnet-version: 6.0.201
dotnet-version: 7.0.x

- name: Install dependencies
run: dotnet restore
Expand Down Expand Up @@ -141,10 +141,10 @@ jobs:
- name: Set version environment variable
run: echo "VERSION=$(cat VERSION | sed -E 's/.[0-9]+$//')" >> $GITHUB_ENV

- name: Set up dotnet
- name: Set up .NET
uses: actions/[email protected]
with:
dotnet-version: 6.0.201
dotnet-version: 7.0.x

- name: Download signed payload
uses: actions/download-artifact@v3
Expand Down Expand Up @@ -249,10 +249,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up dotnet
- name: Set up .NET
uses: actions/[email protected]
with:
dotnet-version: 6.0.201
dotnet-version: 7.0.x

- name: Install dependencies
run: dotnet restore
Expand Down Expand Up @@ -350,10 +350,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Setup .NET
- name: Set up .NET
uses: actions/[email protected]
with:
dotnet-version: 6.0.201
dotnet-version: 7.0.x

- name: Install dependencies
run: dotnet restore
Expand Down Expand Up @@ -437,10 +437,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Setup .NET
- name: Set up .NET
uses: actions/[email protected]
with:
dotnet-version: 6.0.201
dotnet-version: 7.0.x

- name: Build .NET tool
run: |
Expand Down Expand Up @@ -530,10 +530,10 @@ jobs:
name: dotnet-tool-payload-sign
path: signed

- name: Setup .NET
- name: Set up .NET
uses: actions/[email protected]
with:
dotnet-version: 6.0.201
dotnet-version: 7.0.x

- name: Package tool
run: |
Expand Down Expand Up @@ -707,10 +707,10 @@ jobs:
# Remove the "revision" portion of the version
echo "VERSION=$(cat VERSION | sed -E 's/.[0-9]+$//')" >> $GITHUB_ENV

- name: Set up dotnet
- name: Set up .NET
uses: actions/[email protected]
with:
dotnet-version: 6.0.201
dotnet-version: 7.0.x

- name: Download artifacts
uses: actions/download-artifact@v3
Expand Down