Skip to content

Commit

Permalink
Replacing the Deveel Results reference with stable one from Nuget.org
Browse files Browse the repository at this point in the history
  • Loading branch information
tsutomi committed Jul 6, 2024
1 parent 9586615 commit 0b68dfd
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 16 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
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" ]
Expand All @@ -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
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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'" />
Expand Down

0 comments on commit 0b68dfd

Please sign in to comment.