Code Monkey home page Code Monkey logo

release-based-workflow's Introduction

Create a release based workflow

Create a release based workflow that is built on the foundations of the GitHub flow.

Welcome

Create a release based workflow that is built on the foundations of the GitHub flow. When your team uses a release-based workflow, GitHub makes it easy to collaborate with deployable iterations of your project that you can package and make available for a wider audience to download and use.

GitHub releases allow your team to package and provide software to your users based on a specific point in the history of your project.

  • Who is this for: Developers, DevOps Engineers, IT Operations, managers, and teams.
  • What you'll learn: How to follow a release-based workflow.
  • What you'll build: You will create tags, releases, and release notes.
  • Prerequisites: If you need to learn about branches, commits, and pull requests, take Introduction to GitHub first.
  • How long: This course is 7 steps long and takes less than 1 hour to complete.

How to start this course

start-course

  1. Right-click Start course and open the link in a new tab.
  2. In the new tab, most of the prompts will automatically fill in for you.
    • For owner, choose your personal account or an organization to host the repository.
    • We recommend creating a public repository, as private repositories will use Actions minutes.
    • Scroll down and click the Create repository button at the bottom of the form.
  3. After your new repository is created, wait about 20 seconds, then refresh the page. Follow the step-by-step instructions in the new repository's README.

Step 1: Create a beta release

Welcome to "Release-based workflow" ❇️

The GitHub flow

The GitHub flow is a lightweight, branch-based workflow for projects with regular deployments.

github-flow

Some projects may deploy more often, with continuous deployment. There might be a "release" every time there's a new commit on main.

But, some projects rely on a different structure for versions and releases.

Versions

Versions are different iterations of updated software like operating systems, apps, or dependencies. Common examples are "Windows 8.1" to "Windows 10", or "macOS High Sierra" to "macOS Mojave".

Developers update code and then run tests on the project for bugs. During that time, the developers might set up certain securities to protect from new code or bugs. Then, the tested code is ready for production. Teams version the code and release it for installation by end users.

⌨️ Activity: Create a release for the current codebase

In this step, you will create a release for this repository on GitHub.

GitHub Releases point to a specific commit. Releases can include release notes in Markdown files, and attached binaries.

Before using a release based workflow for a larger release, let's create a tag and a release.

  1. Open a new browser tab, and work on the steps in your second tab while you read the instructions in this tab.
  2. Go to the Releases page for this repository.
    • Tip: To reach this page, click the Code tab at the top of your repository. Then, find the navigation bar below the repository description, and click the Releases heading link.
  3. Click Create a new release.
  4. In the field for Tag version, specify a number. In this case, use v0.9. Keep the Target as main.
  5. Give the release a title, like "First beta release". If you'd like, you could also give the release a short description.
  6. Select the checkbox next to Set as a pre-release, since it is representing a beta version.
  7. Click Publish release.

⌨️ Activity: Introduce a bug to be fixed later

To set the stage for later, let's also add a bug that we'll fix as part of the release workflow in later steps. We've already created a update-text-colors branch for you so let's create and merge a pull request with this branch.

  1. Open a new pull request with base: release-v1.0 and compare: update-text-colors.
  2. Set the pull request title to "Updated game text style". You can include a detailed pull request body, an example is below:
    ## Description:
    - Updated game text color to green
    
  3. Click Create pull request.
  4. We'll merge this pull request now. Click Merge pull request and delete your branch.
  5. Wait about 20 seconds then refresh this page for the next step.

Step 2: Add a new feature to the release branch

Great job creating a beta release ❤️

Release management

As you prepare for a future release, you'll need to organize more than the tasks and features. It's important to create a clear workflow for your team, and to make sure that the work remains organized.

There are several strategies for managing releases. Some teams might use long-lived branches, like production, dev, and main. Some teams use simple feature branches, releasing from the main branch.

No one strategy is better than another. We always recommend being intentional about branches and reducing long-lived branches whenever possible.

In this exercise, you'll use the release-v1.0 branch to be your one long-lived branch per release version.

Protected branches

Like the main branch, you can protect release branches. This means you can protect branches from force pushes or accidental deletion. This is already configured in this repository.

Add a feature

Releases are usually made of many smaller changes. Let's pretend we don't know about the bug we added earlier and we'll focus on a few features to update our game before the version update.

  • You should update the page background color to black.
  • I'll help you change the text colors to green.

⌨️ Activity: Update base.css

  1. Create a new branch off of the main branch and change the body CSS declaration in base.css to match what is below. This will set the page background to black.
body {
    background-color: black;
}
  1. Open a pull request with release-v1.0 as the base branch, and your new branch as the compare branch.
  2. Fill in the pull request template to describe your changes.
  3. Click Create pull request.

Merge the new feature to the release branch

Even with releases, the GitHub flow is still an important strategy for working with your team. It's a good idea to use short-lived branches for quick feature additions and bug fixes.

Merge this feature pull request so that you can open the release pull request as early as possible.

⌨️ Activity: Merge the pull request

  1. Click Merge pull request, and delete your branch.
  2. Wait about 20 seconds then refresh this page for the next step.

Step 3: Open a release pull request

Nice work adding a new feature 😄

Release branches and main

You should open a pull request between your release branch and main as early as possible. It might be open for a long time, and that's okay.

In general, the pull request description can include:

  • A reference to an issue that the pull request addresses.
  • A description of the changes proposed in the pull request.
  • @mentions of the person or team responsible for reviewing proposed changes.

To expedite the creation of this pull request, I've added a pull request template to the repository. When you create a pull request, default text will automatically be displayed. This should help you identify and fill out all the necessary information. If you don't want to use the template content, just remove the text from the pull request and repace it with your pull request message.

⌨️ Activity: Open a release pull request

Let's make a new pull request comparing the release-v1.0 branch to the main branch.

  1. Open a new pull request with base: main and compare: release-v1.0.
  2. Ensure the title of your pull request is "Release v1.0".
  3. Include a detailed pull request body, an example is below:
    ## Description:
    - Changed page background color to black.
    - Changed game text color to green.
    
  4. Click Create pull request.
  5. Wait about 20 seconds then refresh this page for the next step.

Step 4: Generate release notes and merge

Thanks for opening that pull request 💃

Automatically generated release notes

Automatically generated release notes provide an automated alternative to manually writing release notes for your GitHub releases. With automatically generated release notes, you can quickly generate an overview of the contents of a release. Automatically generated release notes include a list of merged pull requests, a list of contributors to the release, and a link to a full changelog. You can also customize your release notes once they are generated.

⌨️ Activity: Generate release notes

  1. In a separate tab, go to the Releases page for this repository.
    • Tip: To reach this page, click the Code tab at the top of your repository. Then, find the navigation bar below the repository description, and click the Releases heading link.
  2. Click the Draft a new release button.
  3. In the field for Tag version, specify v1.0.0.
  4. To the right of the tag dropdown, click the Target dropddown and select the release-v1.0 branch.
    • Tip: This is temporary in order to generate release notes based on the changes in this branch.
  5. To the top right of the description text box, click Generate release notes.
  6. Review the release notes in the text box and customize the content if desired.
  7. Set the Target branch back to the main, as this is the branch you want to create your tag on once the release branch is merged.
  8. Click Save draft, as you will publish this release in the next step.

You can now merge your pull request!

⌨️ Activity: Merge into main

  1. In a separate tab, go to the Pull requests page for this repository.
  2. Open your Release v1.0 pull request.
  3. Click Merge pull request.
  4. Wait about 20 seconds then refresh this page for the next step.

Step 5: Finalize the release

Awesome work on the release notes 👍

Finalizing releases

It's important to be aware of the information what will be visible in that release. In the pre-release, the version and commit messages are visible.

image

Semantic versioning

Semantic versioning is a formal convention for specifying compatibility. It uses a three-part version number: major version; minor version; and patch. Version numbers convey meaning about the underlying code and what has been modified. For example, versioning could be handled as follows:

Code status Stage Rule Example version
First release New product Start with 1.0.0 1.0.0
Backward compatible fix Patch release Increment the third digit 1.0.1
Backward compatible new feature Minor release Increment the middle digit and reset the last digit to zero 1.1.0
Breaking updates Major release Increment the first digit and reset the middle and last digits to zero 2.0.0

Check out this article on Semantic versioning to learn more.

Finalize the release

Now let's change our recently automated release from draft to latest release.

⌨️ Activity: Finalize release

  1. In a separate tab, go to the Releases page for this repository.
    • Tip: To reach this page, click the Code tab at the top of your repository. Then, find the navigation bar below the repository description, and click the Releases heading link.
  2. Click the Edit button next to your draft release.
  3. Ensure the Target branch is set to main.
  4. Click Publish release.
  5. Wait about 20 seconds then refresh this page for the next step.

Step 6: Commit a hotfix to the release

Almost there ❤️

Notice that I didn't delete the branch? That's intentional.

Sometimes mistakes can happen with releases, and we'll want to be able to correct them on the same branch.

Now that your release is finalized, we have a confession to make. Somewhere in our recent update, I made a mistake and introduced a bug. Instead of changing the text colors to green, we changed the whole game background.

Tip: Sometimes GitHub Pages takes a few minutes to update. Your page might not immediately show the recent updates you've made.

image

"Hotfixes", or a quick fix to address a bug in software, are a normal part of development. Oftentimes you'll see application updates whose only description is "bug fixes".

When bugs come up after you release a version, you'll need to address them. We've already created a hotfix-v1.0.1 and fix-game-background branches for you to start.

We'll submit a hotfix by creating and merging the pull request.

⌨️ Activity: Create and merge the hotfix pull request

  1. Open a pull request with hotfix-v1.0.1 as the base branch, and fix-game-background as the compare branch.
  2. Fill in the pull request template to describe your changes. You can set the pull request title to "Hotfix for broken game style". You can include a detailed pull request body, an example is below:
    ## Description:
    - Fixed bug, set game background back to black
    
  3. Review the changes and click Create pull request.
  4. We want to merge this into our hotfix branch now so click Merge pull request.

Now we want these changes merged into main as well so let's create and merge a pull request with our hotfix to main.

⌨️ Activity: Create the release pull request

  1. Open a pull request with main as the base branch, and hotfix-v1.0.1 as the compare branch.
  2. Ensure the title of your pull request is "Hotfix v1.0.1".
  3. Include a detailed pull request body, an example is below:
    ## Description:
    - Fixed bug introduced in last production release - set game background back to black
    
  4. Review the changes and click Create pull request.
  5. Click Merge pull request.
  6. Wait about 20 seconds then refresh this page for the next step.

Step 7: Create release v1.0.1

One last step to go!

A final release

You updated the source code, but users can't readily access your most recent changes. Prepare a new release, and distribute that release to the necessary channels.

Create release v1.0.1

With descriptive pull requests and auto generated release notes, you don't have to spend a lot of time working on your release draft. Follow the steps below to create your new release, generate the release notes, and publish.

⌨️ Activity: Complete release

  1. In a separate tab, go to to the Releases page for this repository.
    • Tip: To reach this page, click the Code tab at the top of your repository. Then, find the navigation bar below the repository description, and click the Releases heading link.
  2. Click the Draft a new release button.
  3. Set the Target branch to main.
    • Tip: Practice your semantic version syntax. What should the tag and title for this release be?
  4. To the top right of the description text box, click Generate release notes.
  5. Review the release notes in the text box and customize the content if desired.
  6. Click Publish release.
  7. Wait about 20 seconds then refresh this page for the next step.

Finish

celebrate

Congratulations friend, you've completed this course!

Here's a recap of all the tasks you've accomplished in your repository:

  • Create a beta release.
  • Add a new feature to the release branch.
  • Open a release pull request
  • Automate release notes.
  • Merge and finalize the release branch.
  • Commit a hotfix to the release.
  • Create release v1.0.1.

What's next?


Get help: Post in our discussion boardReview the GitHub status page

© 2022 GitHub • Code of ConductMIT License

release-based-workflow's People

Contributors

tstanko avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.