From b9b1e3b9772a2ae2e233e72707195343586e0220 Mon Sep 17 00:00:00 2001 From: Adam Plumer Date: Tue, 10 Feb 2026 12:52:52 -0500 Subject: [PATCH] chore: checkout repository before cutting new tag This is needed to generate the proper tag and then push the tag back upstream. --- .github/workflows/main.yaml | 4 ++++ tools/github_workflows/workflows_template.libsonnet | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 25d1a239..47a3b9d5 100755 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -656,6 +656,10 @@ ], "runs-on": "ubuntu-latest", "steps": [ + { + "name": "Checkout the repository", + "uses": "actions/checkout@v4 " + }, { "name": "Download release artifacts", "uses": "actions/download-artifact@v4", diff --git a/tools/github_workflows/workflows_template.libsonnet b/tools/github_workflows/workflows_template.libsonnet index c5c2dab7..fb9cb1ca 100644 --- a/tools/github_workflows/workflows_template.libsonnet +++ b/tools/github_workflows/workflows_template.libsonnet @@ -153,6 +153,10 @@ name: 'publish', needs: ['build_and_test'], steps: [ + { + name: 'Checkout the repository', + uses: 'actions/checkout@v4 ', + }, { name: 'Download release artifacts', uses: 'actions/download-artifact@v4',