Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Aparapi
aparapi-docker
Commits
c3fbf3d5
Commit
c3fbf3d5
authored
Oct 01, 2020
by
Jeffrey Phillips Freeman
💥
Browse files
Updating contributing, had some mistakes in example commands.
parent
ed7bab8a
Pipeline
#659
passed with stage
in 4 minutes and 4 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
CONTRIBUTING.md
View file @
c3fbf3d5
...
...
@@ -91,9 +91,9 @@ Next lets take a few steps to do the actual release:
7.
If pipeline passed, create a generic new branch, do not push it, as follows
`git checkout -b release`
.
8.
Update the pipeline badge in the readme to point to the to-be-released repository tag/version.
9.
Commit the current changes using a generic commit message such as
`build(release): version 1.2.3 revision 4`
. But do not push.
10.
Create a new tag for the current revision with the following command:
`git tag -a
v
1.2.3-4 -m "Version 1.2.3 revision 4"`
. Ensure
tags
**always**
have the aparapi version followed by revsion.
11.
Push the newly created tag to the server:
`git push origin
v
1.2.3-4:
v
1.2.3-4`
.
10.
Create a new tag for the current revision with the following command:
`git tag -a 1.2.3-4 -m "Version 1.2.3 revision 4"`
. Ensure
tags
**always**
have the aparapi version followed by revsion
and never have the letter
`v`
prepending it
.
11.
Push the newly created tag to the server:
`git push origin 1.2.3-4:1.2.3-4`
.
12.
Delete the release branch you created locally
`git branch -D release`
.
13.
If the Aparapi version deployed is the latest then merge develop branch into master, develop branch should already contain latest
Aparapi version from the first step.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment