From e81f3261fbdefd8ba09281c575e0604735fa0370 Mon Sep 17 00:00:00 2001 From: "H. Utku Maden" Date: Sun, 26 Jan 2025 15:10:40 +0300 Subject: [PATCH] Add missing sources. --- .gitea/workflows/deploy.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index e79f8c2..4e0f6ff 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -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=.* \ No newline at end of file + rsyncArgs: --exclude=.* + - name: Clear Secrets + run: | + dotnet nuget remove source ReFuel + dotnet nuget remove source CallumDev \ No newline at end of file