Skip to content

Commit

Permalink
Revert pipelines edit
Browse files Browse the repository at this point in the history
  • Loading branch information
ColdForeign committed Dec 6, 2024
1 parent 00f30cd commit 7c4e08b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build-test-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,13 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup .NET 9, 8, 7, 6
- name: Setup .NET 8, 7, 6
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
9.0.x
- name: Install WASM tools Workloads
run: |
Expand All @@ -57,6 +56,6 @@ jobs:
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.net6.0.cobertura.xml, coverage.net7.0.cobertura.xml, coverage.net8.0.cobertura.xml, coverage.net9.0.cobertura.xml
files: coverage.net6.0.cobertura.xml, coverage.net7.0.cobertura.xml, coverage.net8.0.cobertura.xml
fail_ci_if_error: true
verbose: true
3 changes: 1 addition & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,14 +117,13 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Setup .NET 9, 8, 7, 6
- name: Setup .NET 8, 7, 6
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
9.0.x
- name: Cache JDK
id: cache-jdk
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Verify file keys in Cropper.Blazor.staticwebassets.runtime.json
run: |
error_messages=""
for net_version in 6.0 7.0 8.0 9.0; do
for net_version in 6.0 7.0 8.0; do
json_path="src/Cropper.Blazor/Cropper.Blazor/bin/Release/net$net_version/Cropper.Blazor.staticwebassets.runtime.json"
if [ -f "$json_path" ]; then
Expand All @@ -66,7 +66,7 @@ jobs:
echo -e "$error_messages"
exit 1
else
echo "All keys exist for .NET 6, .NET 7, .NET 8 and .NET 9."
echo "All keys exist for .NET 6, .NET 7, and .NET 8."
fi
- name: Push to NuGet Gallery
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Cropper.Blazor is an essential component for building interactive image cropping
| - | .NET 5 | Not supported |
| 1.1.x | [.NET 6](https://dotnet.microsoft.com/download/dotnet/6.0) | :heavy_check_mark: |
| 1.2.x | [.NET 6](https://dotnet.microsoft.com/download/dotnet/6.0) & [.NET 7](https://dotnet.microsoft.com/en-us/download/dotnet/7.0) | :heavy_check_mark: |
| 1.3.x | [.NET 6](https://dotnet.microsoft.com/download/dotnet/6.0) & [.NET 7](https://dotnet.microsoft.com/en-us/download/dotnet/7.0) & [.NET 8](https://dotnet.microsoft.com/en-us/download/dotnet/8.0) & [.NET 9](https://dotnet.microsoft.com/en-us/download/dotnet/9.0) | :heavy_check_mark: |
| 1.3.x | [.NET 6](https://dotnet.microsoft.com/download/dotnet/6.0) & [.NET 7](https://dotnet.microsoft.com/en-us/download/dotnet/7.0) & <br/> [.NET 8](https://dotnet.microsoft.com/en-us/download/dotnet/8.0) & [.NET 9](https://dotnet.microsoft.com/en-us/download/dotnet/9.0) | :heavy_check_mark: |

- Supported .NET 9.0, .NET 8.0, .NET 7.0, .NET 6.0 versions for these web platforms:
- Blazor WebAssembly
Expand Down

0 comments on commit 7c4e08b

Please sign in to comment.