@@ -7,15 +7,58 @@ inputs:
7
7
gpg_passphrase :
8
8
description : ' GPG passphrase for artifact signing'
9
9
required : true
10
+ update_type :
11
+ description : ' One of MAJOR, MINOR, BUILD, PATCH'
12
+ required : true
10
13
11
14
runs :
12
15
using : " composite"
13
16
steps :
14
- - name : Get version
15
- id : get_version
17
+ - name : Get old version
18
+ id : get_old_version
19
+ shell : bash
20
+ run : |
21
+ echo "version=$(python build/versionutils.py gradle.properties)" >> "$GITHUB_OUTPUT"
22
+ # Push a version bump back to main. There are failure scenarios that can result
23
+ # in published artifacts but an erroneous build, so it's safer to bump the version
24
+ # at the beginning
25
+ - name : Increment version
26
+ shell : bash
27
+ run : python build/versionutils.py gradle.properties --increment --commit -u ${{ inputs.update_type }}
28
+ - name : Get new version
29
+ id : get_new_version
16
30
shell : bash
17
31
run : |
18
32
echo "version=$(python build/versionutils.py gradle.properties)" >> "$GITHUB_OUTPUT"
33
+ # We also want to push the tag, because that will be used for the next release's release notes
34
+ - name : Create tag
35
+ shell : bash
36
+ run : git tag -m "Release ${{ steps.get_new_version.outputs.version }}" -f "${{ steps.get_new_version.outputs.version }}"
37
+
38
+ # We want to do this before anything else, because if the later steps fail, we want to make sure that the full
39
+ # change log includes all changes, even if they reference a release that was never actually published.
40
+ - name : Update release notes
41
+ shell : bash
42
+ run : |
43
+ python ./build/create_release_notes.py \
44
+ --config ./build/release-notes-config.json \
45
+ --release-notes-md docs/sphinx/source/ReleaseNotes.md \
46
+ --skip-commit $(git log -n 1 --format=%H HEAD) \
47
+ --repository ${{ github.repository }} \
48
+ --commit \
49
+ ${{ steps.get_old_version.outputs.version }} ${{ steps.get_new_version.outputs.version }}
50
+ # We move the tag to after the release notes are updated so that later steps (i.e. sphinx) will pick up the udpated
51
+ # release notes
52
+ - name : Move tag to HEAD
53
+ shell : bash
54
+ run : git tag -m "Release ${{ steps.get_new_version.outputs.version }}" -f "${{ steps.get_new_version.outputs.version }}"
55
+
56
+ # push the changes to gradle.properties, the release notes, and the tag as one operation, so if it fails,
57
+ # it will be as if the release never did anything
58
+ - name : Push Version Update
59
+ shell : bash
60
+ run : git push origin HEAD "${{ steps.get_new_version.outputs.version }}"
61
+
19
62
- name : Run Gradle Test
20
63
uses : ./actions/gradle-test
21
64
with :
@@ -29,36 +72,37 @@ runs:
29
72
ORG_GRADLE_PROJECT_signingPassword : ${{ inputs.gpg_passphrase }}
30
73
31
74
# Post release: Update various files which reference version
32
- - name : Update release notes
33
- shell : bash
34
- run : ARTIFACT_VERSION="${{ steps.get_version.outputs.version }}" ./build/update_release_notes.bash
75
+ # Updating the yaml files has to be done after the tests complete, or it will mark tests as failing that aren't
76
+ # supported by the previous version.
35
77
- name : Update YAML test file versions
36
78
uses : ./actions/run-gradle
37
79
with :
38
80
gradle_command : updateYamsql -PreleaseBuild=true
39
81
- name : Commit YAML updates
40
82
shell : bash
41
- run : python ./build/commit_yamsql_updates.py "${{ steps.get_version .outputs.version }}"
83
+ run : python ./build/commit_yamsql_updates.py "${{ steps.get_new_version .outputs.version }}"
42
84
43
- # Create and push the tag
44
- - name : Create tag
45
- shell : bash
46
- run : git tag -m "Release ${{ steps.get_version.outputs.version }}" -f "${{ steps.get_version.outputs.version }}"
47
- - name : Push tag
48
- shell : bash
49
- run : git push origin "${{ steps.get_version.outputs.version }}"
50
85
- name : Push Updates
51
86
id : push_updates
52
87
shell : bash
53
88
run : git push origin
89
+ # Continue the build (including downstream steps). If the push fails, we'll create a PR
90
+ continue-on-error : true
54
91
- name : Create Merge PR if conflict
55
- if : failure() && steps.push_updates.conclusion == 'failure'
92
+ # Only create the PR if we've otherwise been successful, but the push failed. Note that
93
+ # we're checking the .outcome of the push step, which is applied before continue-on-error.
94
+ if : success() && steps.push_updates.outcome == 'failure'
56
95
uses : peter-evans/create-pull-request@bb88e27d3f9cc69c8bc689eba126096c6fe3dded
57
96
id : pr_on_conflict
58
97
with :
59
98
branch : release-build
60
99
branch-suffix : timestamp
61
- title : " Updates for ${{ steps.get_version .outputs.version }} release"
100
+ title : " Updates for ${{ steps.get_new_version .outputs.version }} release"
62
101
sign-commits : true
63
102
body : |
64
- Updates from release for version ${{ steps.get_version.outputs.version }}. Conflicts during the build prevented automatic updating. Please resolve conflicts by checking out the current branch, merging, and then deleting this branch.
103
+ Updates from release for version ${{ steps.get_new_version.outputs.version }}. Conflicts during the build prevented automatic updating. Please resolve conflicts by checking out the current branch, merging, and then deleting this branch.
104
+
105
+ # Creating the PR can change the current branch. Explicitly check out the tag here for downstream builds
106
+ - name : Revert to tag
107
+ shell : bash
108
+ run : git checkout "${{ steps.get_new_version.outputs.version }}"
0 commit comments