Skip to content

Commit

Permalink
Another attempt to authenticate the Nuget private repository
Browse files Browse the repository at this point in the history
  • Loading branch information
tsutomi committed Jul 6, 2024
1 parent aa63de1 commit 40386e6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- 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 deveel --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text
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'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ 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 deveel --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text
- 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'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- 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 deveel --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text
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'
Expand Down

0 comments on commit 40386e6

Please sign in to comment.