diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6476070e..1de08b68 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -96,8 +96,6 @@ jobs: steps: - uses: actions/checkout@v4 - with: - fetch-tags: true - name: Download all workflow run artifacts uses: actions/download-artifact@v4 with: diff --git a/scripts/check_pre_ci.py b/scripts/check_pre_ci.py index b885e8fb..f2bab576 100644 --- a/scripts/check_pre_ci.py +++ b/scripts/check_pre_ci.py @@ -50,7 +50,7 @@ def main(): notes_path = generate_notes(tag) subprocess.check_call(["git", "tag", "-a", "-F", notes_path, tag ]) - subprocess.check_call(["git", "push", "master", "--tags"]) + subprocess.check_call(["git", "push", "--tags"]) if __name__ == "__main__":