Release 1 #15
Workflow file for this run
This file contains 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
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: | |
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: "Testing" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Test output" | |
id: set_output | |
run: echo "foo=BAR" >> $GITHUB_OUTPUT | |
- name: "Print output" | |
id: print_output | |
run: echo ${{ steps.set_output.outputs.foo }} | |
- name: "Print from wrong step" | |
run: echo ${{ steps.print_output.outputs.foo }} |