Skip to content

Commit 1dfbf7a

Browse files
committed
Packages/doc/developers.rst: Update it
The compile check for each commit in c3e7dc3 (.github/workflows: Add job to compile test each commit, 2023-12-22) suffers from an issue when the release branch is empty. In this case we then assume that the branch in question is forked from the release branch instead of main. This results in checking all commits in main since the release branch forked off. By adding an empty commit to the release branch we can circumvent the problem.
1 parent 743b49c commit 1dfbf7a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Packages/doc/developers.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,11 @@ Cutting a new release
7575
for how the asterisk should look like
7676
- Push the tag: ``git push origin $tag``. You can pass ``--dry-run`` for
7777
testing out what is getting pushed without pushing anything.
78-
- Create the release branches:
78+
- Create the release branch:
7979

8080
- ``git checkout -b release/X.Y``
8181
- ``git push --no-verify -u origin release/X.Y``
82+
- ``git commit --allow-empty -m "Start of the release X.Y"``
8283

8384
- Create a new release on github and check that the Github Actions job
8485
correctly uploads the artifacts

0 commit comments

Comments
 (0)