diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1de08b68..ef261e99 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -100,10 +100,10 @@ jobs: uses: actions/download-artifact@v4 with: merge-multiple: true - - name: List artifacts - run: ls -R - name: Get tag message run: git tag -l --format='%(contents)' $(git describe --tags) > release_body.md + - name: Print release body + run: cat release_body.md - uses: ncipollo/release-action@v1 with: draft: true diff --git a/scripts/check_pre_ci.py b/scripts/check_pre_ci.py index f2bab576..b4930cc0 100644 --- a/scripts/check_pre_ci.py +++ b/scripts/check_pre_ci.py @@ -50,6 +50,7 @@ def main(): notes_path = generate_notes(tag) subprocess.check_call(["git", "tag", "-a", "-F", notes_path, tag ]) + subprocess.check_call(["git", "push"]) subprocess.check_call(["git", "push", "--tags"])