Skip to content

Commit

Permalink
Bump to 0.3.0 (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
bksteiny authored Sep 10, 2021
1 parent 8c7923c commit 5484894
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Create Release
on:
push:
branches:
- 'master'
paths:
- VERSION.txt
jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Read VERSION.txt
id: get_version
run: echo "##[set-output name=version;]$(cat VERSION.txt)"
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.get_version.outputs.version }}
release_name: ${{ steps.get_version.outputs.version }}
draft: false
prerelease: false
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0] - 2021-09-10
### Added
- Add Azure support

Expand Down
1 change: 1 addition & 0 deletions VERSION.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v0.3.0

0 comments on commit 5484894

Please sign in to comment.