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
4 changes: 2 additions & 2 deletions .github/workflows/build_docker_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ jobs:
run: |
docker build . --file ./src/Shark.Fido2.Sample/Dockerfile \
--tag $DOCKERHUB_USERNAME/shark-fido2-sample:latest \
--tag $DOCKERHUB_USERNAME/shark-fido2-sample:v1.4.3
--tag $DOCKERHUB_USERNAME/shark-fido2-sample:v1.4.4
docker push $DOCKERHUB_USERNAME/shark-fido2-sample:latest
docker push $DOCKERHUB_USERNAME/shark-fido2-sample:v1.4.3
docker push $DOCKERHUB_USERNAME/shark-fido2-sample:v1.4.4
2 changes: 1 addition & 1 deletion .github/workflows/build_nuget_packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
run: dotnet build ${{ matrix.project }} --configuration Release --no-restore

- name: Pack
run: dotnet pack ${{ matrix.project }} --configuration Release --no-restore --output ./nupkg /p:Version=1.4.3.${{ github.run_number }} /p:EmbedUntrackedSources=true /p:IncludeSymbols=true /p:SymbolPackageFormat=snupkg /p:ContinuousIntegrationBuild=true /p:DebugType=portable /p:DebugSymbols=true
run: dotnet pack ${{ matrix.project }} --configuration Release --no-restore --output ./nupkg /p:Version=1.4.4.${{ github.run_number }} /p:EmbedUntrackedSources=true /p:IncludeSymbols=true /p:SymbolPackageFormat=snupkg /p:ContinuousIntegrationBuild=true /p:DebugType=portable /p:DebugSymbols=true

- name: Add nuget source
run: dotnet nuget add source --username ${{ vars.NUGET_USERNAME }} --password $GITHUB_TOKEN --store-password-in-clear-text --name github "https://nuget.pkg.github.com/${{ vars.NUGET_USERNAME }}/index.json"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run: dotnet build templates/projects/Shark.Fido2.VisualStudio.Template/Shark.Fido2.VisualStudio.Template.csproj --configuration Release --no-restore

- name: Pack
run: dotnet pack templates/projects/Shark.Fido2.VisualStudio.Template/Shark.Fido2.VisualStudio.Template.csproj --configuration Release --no-restore --output ./out /p:Version=1.4.3.${{ github.run_number }}
run: dotnet pack templates/projects/Shark.Fido2.VisualStudio.Template/Shark.Fido2.VisualStudio.Template.csproj --configuration Release --no-restore --output ./out /p:Version=1.4.4.${{ github.run_number }}

- name: Upload Artifact
uses: actions/upload-artifact@v6
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Shark.Fido2.Core" Version="1.4.3.132" />
<PackageReference Include="Shark.Fido2.InMemory" Version="1.4.3.132" />
<PackageReference Include="Shark.Fido2.Models" Version="1.4.3.132" />
<PackageReference Include="Shark.Fido2.Core" Version="1.4.4.133" />
<PackageReference Include="Shark.Fido2.InMemory" Version="1.4.4.133" />
<PackageReference Include="Shark.Fido2.Models" Version="1.4.4.133" />
</ItemGroup>

</Project>
Loading