Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
89 changes: 89 additions & 0 deletions .github/workflows/release-customizations.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
name: Release Customizations

on:
push:
tags:
- 'customizations-v*'

permissions:
contents: write

env:
DOTNET_VERSION: '8.0.x'

jobs:
build-and-test:
name: Build and Test
runs-on: windows-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

- name: Restore
run: dotnet restore Axlis.Customizations.sln

- name: Build
run: dotnet build Axlis.Customizations.sln --no-restore --configuration Release

- name: Test
run: dotnet test Axlis.Customizations.sln --no-build --configuration Release --verbosity normal

pack:
name: Pack NuGet Packages
runs-on: windows-latest
needs: build-and-test

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

- name: Restore
run: dotnet restore Axlis.Customizations.sln

- name: Build
run: dotnet build Axlis.Customizations.sln --no-restore --configuration Release

- name: Pack
run: dotnet pack Axlis.Customizations.sln --no-build --configuration Release --output ./packages

- name: Upload packages as artifacts
uses: actions/upload-artifact@v4
with:
name: nuget-packages-customizations
path: ./packages/*.nupkg

publish:
name: Publish to NuGet
runs-on: windows-latest
needs: pack

steps:
- name: Download packages
uses: actions/download-artifact@v4
with:
name: nuget-packages-customizations
path: ./packages

- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

- name: Publish to NuGet
run: dotnet nuget push ./packages/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
env:
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}

- name: Publish to GitHub Packages
run: dotnet nuget push ./packages/*.nupkg --api-key ${{ secrets.GITHUB_TOKEN }} --source https://nuget.pkg.github.com/marioarce/index.json --skip-duplicate
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,23 @@ Versioning: [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

---

## [0.3.0] — 2026-08-05

### Added

- Added the `Axlis.Customizations` package family scaffold to the repository:
- `Axlis.Customizations.Abstractions` (`netstandard2.0` + `net8.0`) with shared constants for customization controls.
- `Axlis.Customizations.Controls.Sitecore102` (`net48`) with the first Sitecore Shell control implementation: `QueryableTreeList`.
- `Axlis.Customizations.sln` and `Axlis.Customizations.Abstractions.Tests` for isolated family development and testing.

### Changed

- Added `AxlisCustomizationsVersion` to centralized version management in `Directory.Build.props`.
- Added root `nuget.config` with Sitecore feed support required to restore Sitecore 10.2 package dependencies for customizations.
- Updated repository and workflow documentation for the new package family, including release SOP coverage in `WORKFLOWS.md`.

---

## [0.2.0] — 2026-07-10

### Changed
Expand Down Expand Up @@ -78,6 +95,7 @@ Versioning: [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

---

[Unreleased]: https://github.com/marioarce/Axlis/compare/v0.2.0...HEAD
[Unreleased]: https://github.com/marioarce/Axlis/compare/v0.3.0...HEAD
[0.3.0]: https://github.com/marioarce/Axlis/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/marioarce/Axlis/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/marioarce/Axlis/releases/tag/v0.1.0
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project>
<PropertyGroup>
<!-- Centralized version management for Axlis ecosystem packages -->
<AxlisVersion>0.1.0</AxlisVersion>
<AxlisORMVersion>0.1.0</AxlisORMVersion>
<AxlisVersion>0.3.0</AxlisVersion>
<AxlisORMVersion>0.3.0</AxlisORMVersion>
<AxlisCustomizationsVersion>0.1.0</AxlisCustomizationsVersion>

<!-- Common package metadata -->
Expand Down
Loading