This repository has been archived by the owner on Dec 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 363
Release automation #306
Open
Zahweh
wants to merge
22
commits into
master
Choose a base branch
from
release-automation
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Release automation #306
Conversation
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
* Import and configure `loadNpmTasks` module. * Remove manual `loadNpmTasks` calls.
* Use `git-contrib-copy` instead of `grunt.file.copy` paired with a custom task. * Build in `.tmp/build` instead of `gen`. * Add `.tmp` to `.gitignore`. * Remove `git-describe` config since that only applies when using the `git-describe` module, not a custom task. * Use `grunt.util.spawn` in `git-describe` task and nuke dependency to `grunt-util-spawn` module. * Break down grunt tasks into atomic tasks (`build`, `test:unit`, `travis`, `default` and `release`).
* Parse `package.json` and store it in the `grunt` config.
* Normalize string quoting. * Move build path for `axs_testing.js` to `.tmp/build/`
* Add configuration for the following tasks: * `clean`: clean up `.tmp` and `dist` * `bump`: update `package.json`, `bower.json`, `grunt.config[‘pkg’]`, commits changes, creates new version tag, pushes everything to `GoogleChrome` remote * `changelog`: Extracts release notes from changelog (changes since last release), and adds a version header on top of the changelog. * `release`: builds, runs tests, updates dist bundle, bumps `package.json` and `bower.json`, updates changelog, pushes everything to git remote. * Add `clean:all` dependency to `build` task.
* Use `##` instead of `###` for release header entries.
* Add prompts with sensible defaults for git remote, github credentials, and github repo name. * Use config options extracted from prompt responses where appropriate.
* Use the Github API to create a release against release info found in `gh-release` config. * Mark the new release as draft for manual review. * Add GH release task to `release` task chain.
Thanks for your pull request. It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please visit https://cla.developers.google.com/ to sign. Once you've signed, please reply here (e.g.
|
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Gruntfile removed