Skip to content

Commit

Permalink
Add release workflow and readme (#23)
Browse files Browse the repository at this point in the history
* Add release.yml

Signed-off-by: Sayali Gaikawad <gaiksaya@amazon.com>
  • Loading branch information
gaiksaya authored Oct 31, 2022
1 parent b64a788 commit aee18fd
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
name: Create a release

on:
push:
tags:
- '*'

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Release
uses: softprops/action-gh-release@v1
with:
generate_release_notes: true
19 changes: 19 additions & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
- [Overview](#overview)
- [Versioning](#versioning)
- [Releasing](#releasing)

## Overview

This document explains the release strategy for artifacts in this organization.

## Versioning

This respository, as other in this organization follows semantic versioning.

- **major**: Breaking changes
- **minor**: New features
- **patch**: Bug fixes

## Releasing

The release process includes a [MAINTAINER](MAINTAINERS.md) pushing a tag to this repository.

0 comments on commit aee18fd

Please sign in to comment.