From f7ec79e411eca78769c71f22eea9921dd4cc354d Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Mon, 15 Dec 2025 22:01:56 +0000 Subject: [PATCH 1/3] ci: remove baget nuget source --- .github/workflows/dotnet.yml | 3 --- .github/workflows/nightly.yml | 3 --- .github/workflows/prerelease.yml | 3 --- .github/workflows/release.yml | 3 --- 4 files changed, 12 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 1b49e8e..0e12b45 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -23,9 +23,6 @@ jobs: - name: Add GitHub NuGet source run: dotnet nuget add source --username oliverbooth --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/oliverbooth/index.json" - - name: Add BaGet source - run: dotnet nuget add source --username oliverbooth --password ${{ secrets.BAGET_API_KEY }} --store-password-in-clear-text --name baget "https://nuget.oliverbooth.dev/v3/index.json" - - name: Restore dependencies run: dotnet restore diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index ea5a484..ca72a83 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -23,9 +23,6 @@ jobs: - name: Add GitHub NuGet source run: dotnet nuget add source --username oliverbooth --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/oliverbooth/index.json" - - name: Add BaGet source - run: dotnet nuget add source --username oliverbooth --password ${{ secrets.BAGET_API_KEY }} --store-password-in-clear-text --name baget "https://nuget.oliverbooth.dev/v3/index.json" - - name: Restore dependencies run: dotnet restore diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index f726c71..9c5b5bf 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -22,9 +22,6 @@ jobs: - name: Add GitHub NuGet source run: dotnet nuget add source --username oliverbooth --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/oliverbooth/index.json" - - name: Add BaGet source - run: dotnet nuget add source --username oliverbooth --password ${{ secrets.BAGET_API_KEY }} --store-password-in-clear-text --name baget "https://nuget.oliverbooth.dev/v3/index.json" - - name: Restore dependencies run: dotnet restore diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 58c94d6..d222449 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,9 +22,6 @@ jobs: - name: Add GitHub NuGet source run: dotnet nuget add source --username oliverbooth --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/oliverbooth/index.json" - - name: Add BaGet source - run: dotnet nuget add source --username oliverbooth --password ${{ secrets.BAGET_API_KEY }} --store-password-in-clear-text --name baget "https://nuget.oliverbooth.dev/v3/index.json" - - name: Restore dependencies run: dotnet restore From d7eea0317a2fe78e6d48f5d44ddc0b43dd817812 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Mon, 15 Dec 2025 22:04:41 +0000 Subject: [PATCH 2/3] fix(ci): remove baget push step --- .github/workflows/nightly.yml | 3 --- .github/workflows/prerelease.yml | 3 --- .github/workflows/release.yml | 3 --- 3 files changed, 9 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index ca72a83..32d63b4 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -39,8 +39,5 @@ jobs: - name: Push NuGet Package to GitHub run: dotnet nuget push "build/*" --source "github" --api-key ${{ secrets.GITHUB_TOKEN }} --skip-duplicate - - name: Push NuGet Package to BaGet - run: dotnet nuget push "build/*" --source "baget" --api-key ${{ secrets.BAGET_API_KEY }} --skip-duplicate - - name: Push NuGet Package to nuget.org run: dotnet nuget push "build/*" --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }} --skip-duplicate diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index 9c5b5bf..13761fe 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -38,9 +38,6 @@ jobs: - name: Push NuGet Package to GitHub run: dotnet nuget push "build/*" --source "github" --api-key ${{ secrets.GITHUB_TOKEN }} --skip-duplicate - - name: Push NuGet Package to BaGet - run: dotnet nuget push "build/*" --source "baget" --api-key ${{ secrets.BAGET_API_KEY }} --skip-duplicate - - name: Push NuGet Package to nuget.org run: dotnet nuget push "build/*" --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }} --skip-duplicate diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d222449..1eaba5f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,9 +38,6 @@ jobs: - name: Push NuGet Package to GitHub run: dotnet nuget push "build/*" --source "github" --api-key ${{ secrets.GITHUB_TOKEN }} --skip-duplicate - - name: Push NuGet Package to BaGet - run: dotnet nuget push "build/*" --source "baget" --api-key ${{ secrets.BAGET_API_KEY }} --skip-duplicate - - name: Push NuGet Package to nuget.org run: dotnet nuget push "build/*" --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }} --skip-duplicate From 45b3590c70970a21b2399c880e2dd4c15a2e1fb0 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Mon, 15 Dec 2025 22:11:35 +0000 Subject: [PATCH 3/3] ci: re-add baget source (with correct url) --- .github/workflows/dotnet.yml | 3 +++ .github/workflows/nightly.yml | 6 ++++++ .github/workflows/prerelease.yml | 6 ++++++ .github/workflows/release.yml | 6 ++++++ 4 files changed, 21 insertions(+) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 0e12b45..3e8349f 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -23,6 +23,9 @@ jobs: - name: Add GitHub NuGet source run: dotnet nuget add source --username oliverbooth --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/oliverbooth/index.json" + - name: Add BaGet source + run: dotnet nuget add source --username oliverbooth --password ${{ secrets.BAGET_API_KEY }} --store-password-in-clear-text --name baget "https://nuget.booth.dev/v3/index.json" + - name: Restore dependencies run: dotnet restore diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 32d63b4..8947b42 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -23,6 +23,9 @@ jobs: - name: Add GitHub NuGet source run: dotnet nuget add source --username oliverbooth --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/oliverbooth/index.json" + - name: Add BaGet source + run: dotnet nuget add source --username oliverbooth --password ${{ secrets.BAGET_API_KEY }} --store-password-in-clear-text --name baget "https://nuget.booth.dev/v3/index.json" + - name: Restore dependencies run: dotnet restore @@ -39,5 +42,8 @@ jobs: - name: Push NuGet Package to GitHub run: dotnet nuget push "build/*" --source "github" --api-key ${{ secrets.GITHUB_TOKEN }} --skip-duplicate + - name: Push NuGet Package to BaGet + run: dotnet nuget push "build/*" --source "baget" --api-key ${{ secrets.BAGET_API_KEY }} --skip-duplicate + - name: Push NuGet Package to nuget.org run: dotnet nuget push "build/*" --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }} --skip-duplicate diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index 13761fe..63f4bbb 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -22,6 +22,9 @@ jobs: - name: Add GitHub NuGet source run: dotnet nuget add source --username oliverbooth --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/oliverbooth/index.json" + - name: Add BaGet source + run: dotnet nuget add source --username oliverbooth --password ${{ secrets.BAGET_API_KEY }} --store-password-in-clear-text --name baget "https://nuget.booth.dev/v3/index.json" + - name: Restore dependencies run: dotnet restore @@ -38,6 +41,9 @@ jobs: - name: Push NuGet Package to GitHub run: dotnet nuget push "build/*" --source "github" --api-key ${{ secrets.GITHUB_TOKEN }} --skip-duplicate + - name: Push NuGet Package to BaGet + run: dotnet nuget push "build/*" --source "baget" --api-key ${{ secrets.BAGET_API_KEY }} --skip-duplicate + - name: Push NuGet Package to nuget.org run: dotnet nuget push "build/*" --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }} --skip-duplicate diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1eaba5f..e92dc40 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,6 +22,9 @@ jobs: - name: Add GitHub NuGet source run: dotnet nuget add source --username oliverbooth --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/oliverbooth/index.json" + - name: Add BaGet source + run: dotnet nuget add source --username oliverbooth --password ${{ secrets.BAGET_API_KEY }} --store-password-in-clear-text --name baget "https://nuget.booth.dev/v3/index.json" + - name: Restore dependencies run: dotnet restore @@ -38,6 +41,9 @@ jobs: - name: Push NuGet Package to GitHub run: dotnet nuget push "build/*" --source "github" --api-key ${{ secrets.GITHUB_TOKEN }} --skip-duplicate + - name: Push NuGet Package to BaGet + run: dotnet nuget push "build/*" --source "baget" --api-key ${{ secrets.BAGET_API_KEY }} --skip-duplicate + - name: Push NuGet Package to nuget.org run: dotnet nuget push "build/*" --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }} --skip-duplicate