-
Notifications
You must be signed in to change notification settings - Fork 266
PHPLIB-583: Automate release process #1288
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
name: "Release New Version" | ||
run-name: "Release ${{ inputs.version }}" | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: "The version to be released. This is checked for consistency with the branch name and configuration" | ||
required: true | ||
type: "string" | ||
jira-version-number: | ||
description: "JIRA version ID (e.g. 54321)" | ||
required: true | ||
type: "string" | ||
|
||
env: | ||
# TODO: Use different token | ||
GH_TOKEN: ${{ secrets.MERGE_UP_TOKEN }} | ||
GIT_AUTHOR_NAME: "DBX PHP Release Bot" | ||
GIT_AUTHOR_EMAIL: "[email protected]" | ||
default-release-message: | | ||
The PHP team is happy to announce that version {0} of the MongoDB PHP library is now available. | ||
|
||
**Release Highlights** | ||
|
||
TODO: one or more paragraphs describing important changes in this release | ||
|
||
A complete list of resolved issues in this release may be found in [JIRA](https://jira.mongodb.org/secure/ReleaseNote.jspa?version={1}&projectId=12483). | ||
|
||
**Documentation** | ||
|
||
Documentation for this library may be found in the [PHP Library Manual](https://mongodb.com/docs/php-library/current/). | ||
|
||
**Installation** | ||
|
||
This library may be installed or upgraded with: | ||
|
||
composer require mongodb/mongodb:{0} | ||
|
||
Installation instructions for the `mongodb` extension may be found in the [PHP.net documentation](https://php.net/manual/en/mongodb.installation.php). | ||
|
||
jobs: | ||
prepare-release: | ||
name: "Prepare release" | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: "Create release output" | ||
run: echo '🎬 Release process for version ${{ inputs.version }} started by @${{ github.triggering_actor }}' >> $GITHUB_STEP_SUMMARY | ||
|
||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
token: ${{ env.GH_TOKEN }} | ||
|
||
- name: "Store version numbers in env variables" | ||
run: | | ||
echo RELEASE_VERSION=${{ inputs.version }} >> $GITHUB_ENV | ||
echo RELEASE_BRANCH=v$(echo ${{ inputs.version }} | cut -d '.' -f-2) >> $GITHUB_ENV | ||
|
||
- name: "Ensure release tag does not already exist" | ||
run: | | ||
if [[ $(git tag -l ${RELEASE_VERSION}) == ${RELEASE_VERSION} ]]; then | ||
echo '❌ Release failed: tag for version ${{ inputs.version }} already exists' >> $GITHUB_STEP_SUMMARY | ||
exit 1 | ||
fi | ||
|
||
- name: "Fail if branch names don't match" | ||
if: ${{ github.ref_name != env.RELEASE_BRANCH }} | ||
run: | | ||
echo '❌ Release failed due to branch mismatch: expected ${{ inputs.version }} to be released from ${{ env.RELEASE_BRANCH }}, got ${{ github.ref_name }}' >> $GITHUB_STEP_SUMMARY | ||
exit 1 | ||
|
||
# | ||
# Preliminary checks done - commence the release process | ||
# | ||
|
||
- name: "Set git author information" | ||
run: | | ||
git config user.name "${GIT_AUTHOR_NAME}" | ||
git config user.email "${GIT_AUTHOR_EMAIL}" | ||
|
||
# Create a draft release with release message filled in | ||
- name: "Prepare release message" | ||
run: | | ||
cat > release-message <<'EOL' | ||
${{ format(env.default-release-message, inputs.version, inputs.jira-version-number) }} | ||
EOL | ||
|
||
- name: "Create draft release" | ||
run: echo "RELEASE_URL=$(gh release create ${{ inputs.version }} --target ${{ github.ref_name }} --title "${{ inputs.version }}" --notes-file release-message --draft)" >> "$GITHUB_ENV" | ||
|
||
# This step creates the signed release tag | ||
- name: "Create release tag" | ||
uses: mongodb-labs/drivers-github-tools/garasign/git-sign@main | ||
with: | ||
command: "git tag -m 'Release ${{ inputs.version }}' -s --local-user=${{ vars.GPG_KEY_ID }} ${{ inputs.version }}" | ||
garasign_username: ${{ secrets.GRS_CONFIG_USER1_USERNAME }} | ||
alcaeus marked this conversation as resolved.
Show resolved
Hide resolved
|
||
garasign_password: ${{ secrets.GRS_CONFIG_USER1_PASSWORD }} | ||
artifactory_username: ${{ secrets.ARTIFACTORY_USER }} | ||
artifactory_password: ${{ secrets.ARTIFACTORY_PASSWORD }} | ||
|
||
# TODO: Manually merge using ours strategy. This avoids merge-up pull requests being created | ||
# Process is: | ||
# 1. switch to next branch (according to merge-up action) | ||
# 2. merge release branch using --strategy=ours | ||
# 3. push next branch | ||
# 4. switch back to release branch, then push | ||
|
||
- name: "Push changes from release branch" | ||
run: git push | ||
|
||
- name: "Prepare release message" | ||
run: | | ||
cat > release-message <<'EOL' | ||
${{ format(env.default-release-message, inputs.version, inputs.jira-version-number) }} | ||
EOL | ||
cat changelog >> release-message | ||
|
||
# Pushing the release tag starts build processes that then produce artifacts for the release | ||
- name: "Push release tag" | ||
run: git push origin ${{ inputs.version }} | ||
|
||
- name: "Set summary" | ||
run: | | ||
echo '🚀 Created tag and drafted release for version [${{ inputs.version }}](${{ env.RELEASE_URL }})' >> $GITHUB_STEP_SUMMARY | ||
echo '✍️ You may now update the release notes and publish the release when ready' >> $GITHUB_STEP_SUMMARY |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.