From 7cc877ba9776e2d9f6c6a71ae61005ea8612518e Mon Sep 17 00:00:00 2001 From: IQuant Date: Tue, 26 Nov 2024 20:07:24 +0300 Subject: [PATCH] CI again --- .github/workflows/release.yml | 2 -- scripts/check_pre_ci.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) 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__":