Skip to content

Commit

Permalink
Release v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pmendelski committed Nov 8, 2020
1 parent c01f109 commit 46f280f
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ jobs:
RELEASE_VERSION: ${{ steps.changelog.outputs.version }}
RELEASE_VERSION_MAJOR: ${{ steps.changelog.outputs.versionMajor }}
run: |
git push origin :refs/tags/v${RELEASE_VERSION}
git push origin :refs/tags/v${RELEASE_VERSION_MAJOR}
git tag -f "v${RELEASE_VERSION}"
git tag -f "v${RELEASE_VERSION_MAJOR}"
git push origin --tags
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.1] - 2020-11-08
### Changed
- Improved `action.yml` - prepared for the first release in Marketplace

## [1.0.0] - 2020-11-08
### Added
- Added changelog reading and parsing functionalities

[Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/v1.0.1...HEAD
[1.0.1]: https://github.com/olivierlacan/keep-a-changelog/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/olivierlacan/keep-a-changelog/releases/tag/v1.0.0
22 changes: 14 additions & 8 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: 'Changelog parser'
description: 'Parses CHANGELOG file'
name: 'Changelog Parser'
description: 'Parses changelog file'
branding:
icon: 'align-right'
color: 'gray-dark'
icon: 'clock'
color: 'blue'
inputs:
path:
description: 'Path to the CHANGELOG file. By default standard changelog locations are used.'
description: 'Path to the changelog file. By default standard changelog locations are used.'
required: false
default: ''
version:
Expand All @@ -15,12 +15,18 @@ inputs:
outputs:
version:
description: 'Version from the changelog entry'
versionMajor:
description: 'The major version part'
versionMinor:
description: 'The minor version part'
versionPatch:
description: 'The patch version part'
date:
description: 'Release date from the chnagelog entry'
description: 'Release date from the changelog entry'
status:
description: 'Status from the chnagelog entry. Possibly one of the following: prereleased, released, unreleased, or yanked'
description: 'Status from the changelog entry. Possibly one of the following: prerelease, release, unreleased'
description:
description: 'Description from the chnagelog entry'
description: 'Description from the changelog entry'
runs:
using: 'node12'
main: 'build/dist/index.js'

0 comments on commit 46f280f

Please sign in to comment.