Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Operation Result Refactoring #38

Merged
merged 6 commits into from
Jul 6, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Replacing the Deveel Results reference with stable one from Nuget.org
tsutomi committed Jul 6, 2024
commit 0b68dfdc6b6d96e9e2e3d7680f4fd0734284377c
5 changes: 1 addition & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -17,10 +17,7 @@ jobs:

steps:
- uses: actions/checkout@v4

- name: Add GitHub Nuget As Source
run: dotnet nuget add source https://nuget.pkg.github.com/deveel/index.json --name github --username USERNAME --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text


- name: Emit .NET 6.0 Framework Version
if: matrix.dotnet == '6.0.x'
run: echo "DOTNET_FX_VERSION=net6.0" >> $GITHUB_ENV
9 changes: 1 addition & 8 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
name: Repository PR Build

permissions:
packages: read
contents: read

on:
pull_request:
branches: [ "main" ]
@@ -17,10 +13,7 @@ jobs:

steps:
- uses: actions/checkout@v4

- name: Add GitHub Nuget As Source
run: dotnet nuget add source https://nuget.pkg.github.com/deveel/index.json --name github --username USERNAME --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text


- name: Emit .NET 6.0 Framework Version
if: matrix.dotnet == '6.0.x'
run: echo "DOTNET_FX_VERSION=net6.0" >> $GITHUB_ENV
3 changes: 0 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -25,9 +25,6 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Add GitHub Nuget As Source
run: dotnet nuget add source https://nuget.pkg.github.com/deveel/index.json --name github --username USERNAME --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text

- name: Emit .NET 6.0 Framework Version
if: matrix.dotnet == '6.0.x'
run: echo "DOTNET_FX_VERSION=net6.0" >> $GITHUB_ENV
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Deveel.Results" Version="1.0.1-alpha0003" />
<PackageReference Include="Deveel.Results" Version="1.0.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.1" Condition="'$(TargetFramework)' == 'net6.0'" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" Condition="'$(TargetFramework)' == 'net7.0'" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" Condition="'$(TargetFramework)' == 'net8.0'" />
Loading