Skip to content

Commit

Permalink
docs release-process: use GH_USERNAME as a placeholder (#367)
Browse files Browse the repository at this point in the history
At least on my system, the UNIX username is different than my Github
username. Let's change this var name accordingly so it can be more
easily copy-pasted.
  • Loading branch information
gotmax23 committed Feb 12, 2024
1 parent c87ec3a commit 05eb58b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/release-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ This only needs to be done once.
This guide uses your Github username as the fork remote name.

```
git remote add ${USERNAME} https://github.com/${USERNAME}/ansible-build-data
git fetch ${USERNAME} -v
git remote add ${GH_USERNAME} https://github.com/${GH_USERNAME}/ansible-build-data
git fetch ${GH_USERNAME} -v
```

## Perform release process
Expand Down Expand Up @@ -105,7 +105,7 @@ This only needs to be done once.
git switch -c release-${VERSION}
git add ${MAJOR_VERSION}/
git commit -m "Ansible ${VERSION}: Dependencies, changelog and porting guide"
git push -u ${USERNAME} release-${VERSION}
git push -u ${GH_USERNAME} release-${VERSION}
```

Then, submit a pull request against ansible-build-data upstream.
Expand Down

0 comments on commit 05eb58b

Please sign in to comment.