Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
rickbutterfield committed Nov 14, 2024
1 parent 508c44e commit f0fdbae
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
steps:

- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v2
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
dotnet-version: 9.0.x

- name: Build project
run: dotnet build src\Umbraco.Community.Sustainability\Umbraco.Community.Sustainability.csproj --configuration Release
Expand Down
10 changes: 10 additions & 0 deletions src/NuGet.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<!-- Default NuGet source -->
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />

<!-- Umbraco prereleases source -->
<add key="UmbracoPrereleases" value="https://www.myget.org/F/umbracoprereleases/api/v3/index.json" />
</packageSources>
</configuration>
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Umbraco.Cms" Version="15.0.0-rc4" />
<PackageReference Include="Umbraco.TheStarterKit" Version="14.0.0" />
<PackageReference Include="Umbraco.Cms" Version="15.0.0" />
<PackageReference Include="Umbraco.TheStarterKit" Version="15.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions src/Umbraco.Community.Sustainability.UI/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/Umbraco.Community.Sustainability.UI/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
},
"devDependencies": {
"@hey-api/openapi-ts": "^0.48.1",
"@umbraco-cms/backoffice": "^15.0.0-rc4",
"@umbraco-cms/backoffice": "^15.0.0",
"typescript": "^5.2.2",
"vite": "^5.2.8"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@

<ItemGroup>
<PackageReference Include="Microsoft.Playwright" Version="1.44.0" />
<PackageReference Include="Umbraco.Cms.Web.Website" Version="[15.0.0-rc4, 16.0.0)" />
<PackageReference Include="Umbraco.Cms.Api.Common" Version="[15.0.0-rc4, 16.0.0)" />
<PackageReference Include="Umbraco.Cms.Web.Website" Version="[15.0.0, 16.0.0)" />
<PackageReference Include="Umbraco.Cms.Api.Common" Version="[15.0.0, 16.0.0)" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit f0fdbae

Please sign in to comment.