diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 9d081b1..c9590ed 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 + - 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: