Add missing sources.
All checks were successful
Build and Deploy / build_and_deploy (push) Successful in 15m6s

This commit is contained in:
H. Utku Maden 2025-01-26 15:10:40 +03:00
parent b82f5dfe5e
commit e81f3261fb

@ -39,7 +39,9 @@ jobs:
- name: Install .NET Tools - name: Install .NET Tools
run: dotnet tool update -g docfx run: dotnet tool update -g docfx
- name: Add NuGet Sources - name: Add NuGet Sources
run: dotnet nuget add source -n ReFuel -u ${{vars.NUGET_USER_NAME}} -p ${{secrets.REFUEL_API_KEY}} --store-password-in-clear-text ${{vars.NUGET_INDEX}} run: |
dotnet nuget add source -n ReFuel -u ${{vars.NUGET_USER_NAME}} -p ${{secrets.REFUEL_API_KEY}} --store-password-in-clear-text ${{vars.NUGET_INDEX}}
dotnet nuget add source -n CallumDev -u ${{ vars.GH_USERNAME }} -p ${{ secrets.GH_API_KEY }} --store-password-in-clear-text https://nuget.pkg.github.com/CallumDev/index.json
- name: Checkout Repository - name: Checkout Repository
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
@ -58,3 +60,7 @@ jobs:
remote_path: '${{ vars.DESTINATION }}' remote_path: '${{ vars.DESTINATION }}'
sftpArgs: -o ConnectTimeout=10 sftpArgs: -o ConnectTimeout=10
rsyncArgs: --exclude=.* rsyncArgs: --exclude=.*
- name: Clear Secrets
run: |
dotnet nuget remove source ReFuel
dotnet nuget remove source CallumDev