Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
33e239f
Start on auth library and samples
jennyhougen Mar 27, 2025
4d92615
Add authentication samples
jennyhougen Apr 10, 2025
2a3745c
Cleanup code and add description.
jennyhougen Apr 11, 2025
76e43be
Fix angular client return url handling ++
jennyhougen Apr 11, 2025
22c5966
Adding Blazor client,
jennyhougen Apr 25, 2025
c9f18c1
Restructure and cleanup services and samples
jennyhougen May 1, 2025
080ad41
Small fixes
jennyhougen May 1, 2025
90f87d7
Add build and nuget pipeline, add central build and nuget props
jennyhougen May 2, 2025
2aeb37c
Cleanup
jennyhougen May 2, 2025
e48a0af
Fix build and package props
jennyhougen May 2, 2025
ba874e2
Add integration tests
jennyhougen May 3, 2025
3c80f97
some cleanup
jennyhougen May 5, 2025
5363e4e
Update samples/AngularBFF/Angular.BFFApi/Program.cs
jennyhougen May 7, 2025
704fde7
Update samples/AngularBFF/Angular.BFFApi/Program.cs
jennyhougen May 7, 2025
d759f87
Update samples/BlazorInteractiveServer/Startup.cs
jennyhougen May 7, 2025
dc5caa8
Update samples/BlazorInteractiveServer/Startup.cs
jennyhougen May 7, 2025
54f70ca
Update samples/BlazorInteractiveServer/Startup.cs
jennyhougen May 7, 2025
2b483fc
Update samples/BlazorInteractiveServer/Startup.cs
jennyhougen May 7, 2025
1dae310
Update samples/BlazorInteractiveServer/Startup.cs
jennyhougen May 7, 2025
1b8c3fd
Update samples/WorkerService.ClientCredential/Workers/ClientCredentia…
jennyhougen May 7, 2025
6cf1fd9
Update samples/WorkerService.ClientCredential/Workers/ClientCredentia…
jennyhougen May 7, 2025
7567f4d
Update src/Fhi.Authentication.Extensions/Tokens/ClientAssertionTokenH…
jennyhougen May 7, 2025
566116a
Fixes after code review
jennyhougen May 7, 2025
ed1f3ca
Some fixes after review
jennyhougen May 8, 2025
32630af
Rename sample projects
jennyhougen May 8, 2025
700255e
Fix namespaces
jennyhougen May 8, 2025
6e18f79
upgrade packages
jennyhougen May 8, 2025
f5273eb
Method name changes after review
jennyhougen May 8, 2025
4eca4ed
Add more tests
jennyhougen May 8, 2025
ba37e9f
remove spaces
jennyhougen May 8, 2025
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
29 changes: 29 additions & 0 deletions .github/workflows/Fhi.AuthExtensions.CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Fhi.HelseId.CI

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

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

- name: Display dotnet version
run: dotnet --version

- name: Restore dependencies
run: dotnet restore

- name: Build
run: dotnet build --configuration Release --no-restore --verbosity minimal

- name: Run tests
run: dotnet test --configuration Release --no-build --verbosity normal
35 changes: 35 additions & 0 deletions .github/workflows/Fhi.AuthExtensions.Nuget.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Fhi.HelseId.Nuget

on:
push:
branches:
- main

defaults:
run:
shell: pwsh

jobs:
publish:
name: Build, pack & publish
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

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

- name: Pack
run: dotnet pack /p:ContinuousIntegrationBuild=true --output package

- name: Publish nupkg and snupkg to NuGet.org
run: |
foreach($file in (Get-ChildItem -Path package -Recurse -Include "*.nupkg")) {
Write-Host "Publishing nupkg and snupkg:: " $file.FullName
dotnet nuget push $file.FullName --api-key "${{ secrets.NUGET_ORG_FHI_PUBLISH }}" --source https://api.nuget.org/v3/index.json --skip-duplicate
}
Loading