forked from docker-archive/classicswarm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Victor Vieux <victorvieux@gmail.com>
- v1.2.9
- v1.2.8
- v1.2.8-rc1
- v1.2.7
- v1.2.6
- v1.2.6-rc2
- v1.2.6-rc1
- v1.2.5
- v1.2.4
- v1.2.4-rc2
- v1.2.4-rc1
- v1.2.3
- v1.2.3-rc1
- v1.2.2
- v1.2.2-rc1
- v1.2.1
- v1.2.1-rc1
- v1.2.0
- v1.2.0-rc3
- v1.2.0-rc2
- v1.2.0-rc1
- v1.1.3
- v1.1.3-rc2
- v1.1.3-rc1
- v1.1.2
- v1.1.1
- v1.1.0
- v1.1.0-rc3
- v1.1.0-rc2
- v1.1.0-rc1
- docs-v1.2.4-2016-08-03
- docs-v1.2.3-2016-07-22
- docs-v1.2.3-2016-06-27
- docs-v1.2.3-2016-06-03
- docs-v1.1.3-2016-08-10
- docs-2016-02-27
- 1.2.5
Showing
1 changed file
with
57 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# Release Checklist | ||
|
||
### 1. Update version and CHANGELOG.md on docker/swarm | ||
|
||
``` | ||
git checkout -b bump-<version> | ||
edit version/version.go | ||
edit CHANGELOG.md | ||
git add . | ||
git commit -s -m "Bump version to <version>" | ||
git push $GITHUBUSER bump-<version> | ||
``` | ||
|
||
Open PR on docker/swarm | ||
|
||
### 2. Rebase release branch on top of master branch and tag | ||
|
||
``` | ||
git checkout release | ||
git rebase master | ||
git push origin | ||
git tag <tag> | ||
git push origin <tag> | ||
``` | ||
|
||
### 3. Update library image | ||
|
||
``` | ||
git clone git@github.com:docker/swarm-library-image.git | ||
cd swarm-library-image | ||
./update.sh <tag> (example: ./update.sh v0.2.0-rc2) | ||
check buils is successful (swarm binary should show in git diff) | ||
git add . | ||
git commit -s -m “<tag>" | ||
git push origin | ||
``` | ||
|
||
### 4. Update official image | ||
|
||
fork https://github.com/docker-library/official-images.git | ||
|
||
``` | ||
git clone https://github.com/docker-library/official-images.git | ||
cd official-images | ||
git remote add $GITHUBUSER git@github.com:$GITHUBUSER/official-images.git | ||
git checkout -b update_swarm_<tag> | ||
edit library/swarm | ||
git add library/swarm | ||
git commit -s -m "update swarm <tag>" | ||
git push $GITHUBUSER update_swarm_<tag> | ||
``` | ||
|
||
Open PR on docker-library/official-images | ||
|
||
### 5. Create release on github | ||
|
||
Go to https://github.com/docker/swarm/releases/new use <tag> and changelog |