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
run: dotnet tool update -g docfx
- 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
uses: actions/checkout@v4
with:
@ -57,4 +59,8 @@ jobs:
local_path: './_site/*'
remote_path: '${{ vars.DESTINATION }}'
sftpArgs: -o ConnectTimeout=10
rsyncArgs: --exclude=.*
rsyncArgs: --exclude=.*
- name: Clear Secrets
run: |
dotnet nuget remove source ReFuel
dotnet nuget remove source CallumDev