diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..054fd22 --- /dev/null +++ b/.github/workflows/release.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c1b98b..e016b0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/VERSION.txt b/VERSION.txt new file mode 100644 index 0000000..268b033 --- /dev/null +++ b/VERSION.txt @@ -0,0 +1 @@ +v0.3.0