Skip to content

Commit

Permalink
added CHANGELOG.md;
Browse files Browse the repository at this point in the history
CHANGELOG.md filles body of automatic releases;
  • Loading branch information
eisbaer66 committed Jun 28, 2022
1 parent 1275e89 commit 70ac0e0
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,13 +160,20 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v') && matrix.rid == 'linux-x64'
- run: sed -i -e 's/$spmVersion = \"v0.1\"/$spmVersion = \"${{ github.ref_name }}\"/g' install-spm.ps1
if: startsWith(github.ref, 'refs/tags/v') && matrix.rid == 'linux-x64'
- name: Changelog
id: changelog
uses: mindsers/changelog-reader-action@v2.0.0 # v2.1.0 does not read description (see https://github.com/mindsers/changelog-reader-action/issues/63)
if: startsWith(github.ref, 'refs/tags/v')
with:
version: ${{ github.ref_name }}
- name: Release
id: gh-release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/v')
with:
draft: true
prerelease: true
body: ${{ steps.changelog.outputs.changes }}
generate_release_notes: true
files: |
${{ matrix.rid }}.zip
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [v0.1.0] - 2022-06-28
### Added
- initial release
1 change: 1 addition & 0 deletions SourcePawnManager.sln
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SolutionItems", "SolutionIt
.editorconfig = .editorconfig
.gitattributes = .gitattributes
.gitignore = .gitignore
CHANGELOG.md = CHANGELOG.md
CONTRIBUTING.md = CONTRIBUTING.md
COPYING = COPYING
Dockerfile = Dockerfile
Expand Down

0 comments on commit 70ac0e0

Please sign in to comment.