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