Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sanjp10/release
Tag verification and creation using your changelog file. All Git providers supported for public and self-hosted instances. Designed to help automated release creations in CI/CD workflows.
https://github.com/sanjp10/release
bitbucket cd ci ci-cd cicd continuous-delivery continuous-deployment continuous-integration git github gitlab pipelines release release-automation release-management release-notes tagger tagging tags validation
Last synced: 27 days ago
JSON representation
Tag verification and creation using your changelog file. All Git providers supported for public and self-hosted instances. Designed to help automated release creations in CI/CD workflows.
- Host: GitHub
- URL: https://github.com/sanjp10/release
- Owner: sanjP10
- License: apache-2.0
- Created: 2021-01-23T13:58:53.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-05-27T07:45:30.000Z (6 months ago)
- Last Synced: 2024-09-30T03:05:33.042Z (about 1 month ago)
- Topics: bitbucket, cd, ci, ci-cd, cicd, continuous-delivery, continuous-deployment, continuous-integration, git, github, gitlab, pipelines, release, release-automation, release-management, release-notes, tagger, tagging, tags, validation
- Language: Go
- Homepage:
- Size: 805 KB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Release
![Unit and Integration Tests](https://github.com/sanjP10/release/actions/workflows/ci.yml/badge.svg)
![CodeQL](https://github.com/sanjP10/release/workflows/CodeQL/badge.svg)
[![Go Report Card](https://goreportcard.com/badge/github.com/sanjP10/release)](https://goreportcard.com/report/github.com/sanjP10/release)Release is a tool that validates and creates tags against git repos by reading your changelog file.
It is supported for the following git repository providers via their respective REST APIs:
* GitHub
* Gitlab
* BitbucketIf a provider isn't provided to the command it will default to the in built git tagging functionality.
It requires a markdown formatted changelog, with the most recent changes at the top.
The that consists of a version must start with a `h2` markup and have a number afterward.
An example changelog would be
```
# Changelog[//]: <> (Spaces an no spaces on version number lines are for checking regex in unit tests)
## 1.1.0### Updated
* An update happened## 1.0.0
### Added
* Initial release
```
the version numbers can be of a format with decimals separating them.
Example formats tha can be used are
```
major
major.minor
major.minor.patch
major.minor.patch.micro
```***Note: the format must be consistent within the changelog***
# Validation/Release Flows
### Require version bumps
![Release Require version bump](./drawio/Release-Flows-Require-Version-Bump.png)### Valid release
![Valid Release](./drawio/Release-Flows-Valid-Release.png)### Create Release
![Create Release](./drawio/Release-Flows-Creation-Flow.png)# Installation
#### **With Go installed**
If you have go installed, you can install `release` by running the following.
```bash
go install github.com/sanjP10/release@latest
```
To find out where `release` was installed you can run `go list -f {{.Target}} github.com/sanjP10/release`#### **Without Go installed**
You can go to the [releases page](https://github.com/sanjP10/release/releases) and download the binary for your desired operating system and architecture.
For `release` to be used globally add that directory to the `$PATH` environment setting.
# Usage
The two subcommands for release are `validate` and `create`
* `validate` will interrogate the latest version on the changelog file and if it exists for the repository.
If it does exist, and the commit hash provided is the same it will return a successful exit code. Ideally you put this
as part of your testing phase within your CI/CD.
* `create` will do the same as `validate` and if the tag does not exist it will create the tag for the commit hash provided. You
use this when you want to create a tag for your repo.These are the flags when a provider is present
```
-username
-password
-repo /
-changelog
-hash
-host (optional) (default is bitbucket.org, gitlab.com, github.com)
-provider
```These are the flags when using the default git functionality
```
-username
-password
-changelog
-hash
-origin
-ssh
```## Changelog Notes
The **GitHub** and **Gitlab** APIs also takes the markdown between the version numbers and creates a release with the changelog notes you created.
If you use the default **git** provided or a self-hosted **bitbucket** the release notes are added as annotations to the tag, so if you run `git show ` you can see the notes associated.
**Bitbucket** api does not process any release notes as it is not supported.## Examples
This is an example `validate` command via bitbucket```
release validate -username $USER -password $ACCESS_TOKEN -repo owner/repo_name -changelog changelog.md -hash $COMMIT_HASH -provider bitbucket
```
This is an example `validate` command using default git
```
# HTTPS
release validate -username $USER -password $ACCESS_TOKEN -email [email protected] -origin https://[email protected]/$BITBUCKET_REPO_OWNER/$BITBUCKET_REPO_SLUG.git -changelog CHANGELOG.md -hash $COMMIT_HASH# SSH
release validate -ssh $PATH_TO_PRIVATEKEY -password $ACCESS_TOKEN -email [email protected] -origin [email protected]/$BITBUCKET_REPO_OWNER/$BITBUCKET_REPO_SLUG.git -changelog CHANGELOG.md -hash $COMMIT_HASH
```This is an example `create` command via bitbucket
```
release create -username $USER -password $ACCESS_TOKEN -repo owner/repo_name -changelog changelog.md -hash $COMMIT_HASH -provider bitbucket
```
This is an example `create` command using default git
```
# HTTPS
release create -username $USER -password $ACCESS_TOKEN -email [email protected] -origin https://[email protected]/$BITBUCKET_REPO_OWNER/$BITBUCKET_REPO_SLUG.git -changelog CHANGELOG.md -hash $COMMIT_HASH# SSH
release create -ssh $PATH_TO_PRIVATEKEY -password $ACCESS_TOKEN -email [email protected] -origin [email protected]/$BITBUCKET_REPO_OWNER/$BITBUCKET_REPO_SLUG.git -changelog CHANGELOG.md -hash $COMMIT_HASH```
This is an example of `validate` command against a self-hosted bitbucket
```
release validate -username $USER -password $ACCESS_TOKEN -repo owner/repo_name -changelog changelog.md -hash $COMMIT_HASH -host api.mybitbucket.com -provider bitbucket
```# Outputs
Release when returning with a successful exit code will write the desired or created tag as stdout.
You can in turn take that output and use it with other tag based services such as Docker.
An example script would be
```bash
version=$(release create -username $USER -password $ACCESS_TOKEN -repo owner/repo -changelog CHANGELOG.md -hash $COMMIT_HASH -provider github) || exit $?
docker build -t myContainer:$version .
docker push myContainer:$version
```# CI/CD Integrations
## Bitbucket Pipeline example
To integrate the `validate` use this in bitbucket pipelines you can use the following as steps```yaml
- step:
name: validate version
image: golang
script:
- go install github.com/sanjP10/release@latest
# Test version does not exist
- release validate -username $USER -password $ACCESS_TOKEN -repo $BITBUCKET_REPO_OWNER/$BITBUCKET_REPO_SLUG -changelog CHANGELOG.md -hash $BITBUCKET_COMMIT -provider bitbucket
```To integrate the `create` use this in the bitbucket pipeline after you merge to master
To integrate this into bitbucket pipelines you can use the following as steps
```yaml
- step:
name: create version
image: golang
script:
- go install github.com/sanjP10/release@latest
- release create -username $USER -password $ACCESS_TOKEN -repo $BITBUCKET_REPO_OWNER/$BITBUCKET_REPO_SLUG -changelog CHANGELOG.md -hash $BITBUCKET_COMMIT -provider bitbucket
```## GitHub Actions Example
### Using release-action GitHub action
For GitHub actions you can use the [release-action](https://github.com/sanjP10/release-action).
### Directly installing the tool into your job
To integrate the `validate` use this in GitHub actions you can use the following as steps
```yaml
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '^1.18'
- run: go install github.com/sanjP10/release@latest
- run: release validate -username ${{ github.actor }} -password ${{ secrets.GITHUB_TOKEN }} -repo ${{ github.repository }} -changelog CHANGELOG.md -hash ${{ github.sha }} -provider github
```To integrate the `create` use this in the bitbucket pipeline after you merge to master
To integrate this into GitHub actions you can use the following as steps
```yaml
create:
runs-on: ubuntu-latest
needs:
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '^1.18'
- run: go install github.com/sanjP10/release@latest
- run: release create -username ${{ github.actor }} -password ${{ secrets.GITHUB_TOKEN }} -repo ${{ github.repository }} -changelog CHANGELOG.md -hash ${{ github.sha }} -provider github
```## Circle CI Orb
### Using release circle ci orb
For GitHub actions you can use the [release](https://circleci.com/developer/orbs/orb/sanjp10/release) orb.
### Directly installing the tool into your job (requires golang executor)
```yaml
jobs:
# Define one or more jobs which will utilize your orb's commands and parameters to validate your changes.
validate:
executor: release/default
steps:
- checkout
- run:
name: Create tag
command: |
go install github.com/sanjP10/release@latest
release validate -username << parameters.username >> -password << parameters.password >> -repo << parameters.repo >> -changelog << parameters.changelog-file-location >> -hash $CIRCLE_SHA1 -provider << parameters.provider >>
create:
executor: release/default
steps:
- checkout
- run:
name: Create tag
command: |
go install github.com/sanjP10/release@latest
release create -username << parameters.username >> -password << parameters.password >> -repo << parameters.repo >> -changelog << parameters.changelog-file-location >> -hash $CIRCLE_SHA1 -provider << parameters.provider >>
```# Cloud Service Provider Implementations
## CodeCommit
CodeCommit only supports SSHAs code commit uses credential-helper to create a username and password it is not possible to get
the username and password for use with HTTPs.It's required that you use SSH which is only available via IAM Users.
After following the steps in the AWS Documentation of setting up an ssh key as documented [here](https://docs.aws.amazon.com/codecommit/latest/userguide/setting-up-ssh-unixes.html#setting-up-ssh-unixes-keys)
You will need to get the SSH Key ID which can be found in the IAM User console.
This would be the command for using the tool when using SSH.
```
release validate -ssh $PATH_TO_PRIVATEKEY -email [email protected] -origin ssh://[email protected]/v1/repos/$REPO_NAME -username $AWS_SSH_KEY_ID -changelog CHANGELOG.md -hash $COMMIT_HASH
```## GCP Source Repositories
Cloud Source Repositories only supports SSHAs source repositories uses git-cookies to create a username and password it is not possible to get
the username and password for use with HTTPs.Once you have registered the ssh key within cloud source repositories, the command would be as follows
```
release validate -ssh $PATH_TO_PRIVATEKEY -email [email protected] -origin ssh://[email protected]/p/$PROJECT_ID/r/$REPO_NAME -username $ACCOUNT_EMAIL -changelog CHANGELOG.md -hash $COMMIT_HASH
```# Known Issues
## Git provider
* Azure - Unfortunately neither HTTPs nor SSH due to this [issue](https://github.com/go-git/go-git/issues/64)
* GitHub - Unfortunately neither HTTPs nor SSH due to this [issue](https://github.com/go-git/go-git/issues/122), so as an alternative please use `-provider github` which utilises GitHub's REST API