From e6e9726d4ff896d062aa894ce26c7e79c9260d37 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sun, 26 Oct 2025 20:26:32 -0400 Subject: [PATCH] Update rolling tag --- .github/workflows/build_and_test.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 58d4790..3c75ff1 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -11,7 +11,7 @@ jobs: steps: - uses: actions/checkout@v4 with: - submodules: recursive + fetch-depth: 0 - name: Setup .NET uses: actions/setup-dotnet@v4 @@ -27,6 +27,14 @@ jobs: - name: Run publish script run: ./publish-nix.sh -d + - name: Update rolling tag + run: | + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" + git tag -f rolling + git push origin :refs/tags/rolling || true + git push origin rolling --force + - name: Upload to rolling uses: ncipollo/release-action@v1.14.0 with: