Skip to content

Commit

Permalink
Merge pull request #20 from JellyBellyDev/fix/generare-release-action
Browse files Browse the repository at this point in the history
fix(ci): generate release action
  • Loading branch information
JellyBellyDev authored Jan 5, 2024
2 parents 85adf42 + 84f6685 commit 783c2d1
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 32 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@ jobs:

- name: Conventional Changelog Action
id: changelog
uses: TriPSs/conventional-changelog-action@v3
uses: TriPSs/conventional-changelog-action@v5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
tag-prefix: ''
release-count: 0
git-user-name: ${{ secrets.GITHUB_ACTOR }}
git-user-email: ${{ secrets.GITHUB_ACTOR }}@users.noreply.github.com
tag-prefix: 'v'
input-file: 'CHANGELOG.md'
output-file: 'CHANGELOG.md'
release-count: 10000
skip-on-empty: false
skip-version-file: true
output-file: 'CHANGELOG.md'

- name: Create Release
uses: actions/create-release@v1
uses: softprops/action-gh-release@v1
if: ${{ steps.changelog.outputs.skipped == 'false' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.changelog.outputs.tag }}
release_name: ${{ steps.changelog.outputs.tag }}
body: ${{ steps.changelog.outputs.clean_changelog }}
45 changes: 21 additions & 24 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,35 +1,32 @@
# [3.2.0](https://github.com/JellyBellyDev/ImageOrientationFix/compare/v3.1.0...3.2.0) (2024-01-05)
# CHANGELOG

## [3.2.0](https://github.com/JellyBellyDev/ImageOrientationFix/compare/v3.1.0...3.2.0) (2024-01-05)

### Features

* **ci:** create release action ([429b2e1](https://github.com/JellyBellyDev/ImageOrientationFix/commit/429b2e1136a529a04bf460d5ad4b71f2f1ff94af))

## v3.1.0
- Replace CircleCi with GitHub Actions
- Add compatibility with PHP 8.0

## v3.0.1
- Replace TravisCI and Scrutinizer with CircleCi and Codecov
- Published docker image `jellybellydev/imageorientationfix:1.0` starting from file `.docker/php74/Dockerfile`

## [3.0.1](https://github.com/JellyBellyDev/ImageOrientationFix/compare/v3.0.0...v3.0.1) (2020-10-15)


### Bug Fixes

* **ci:** configs ([8d4832a](https://github.com/JellyBellyDev/ImageOrientationFix/commit/8d4832a88ae74be3b10c0712d6d993a3bad51431))
* **readme:** override badges circleci and codecov ([3f58f37](https://github.com/JellyBellyDev/ImageOrientationFix/commit/3f58f37e94f9950a311360da483a484bd2ba3abf))


### Features

* add cs-fixer checks in travis ([28ffaf1](https://github.com/JellyBellyDev/ImageOrientationFix/commit/28ffaf101c55e94fe6d138a1f3f27e624f6bbc28))
* **ci:** add circleci and coverage. Remove trevis and scrutinazier. ([1d67506](https://github.com/JellyBellyDev/ImageOrientationFix/commit/1d675066befe1463da1e5e2301bdfcb476863396))
* **engine:** refactoring library to minor php version 7.4 ([095e9f8](https://github.com/JellyBellyDev/ImageOrientationFix/commit/095e9f8935f28ca43664f2a88f29d27cd907ea6f))
* improved readme, composer and changelog files ([91af74f](https://github.com/JellyBellyDev/ImageOrientationFix/commit/91af74fe213d779a0c6da38d268c3856976c2850))



## [1.0.4](https://github.com/JellyBellyDev/ImageOrientationFix/compare/v1.0.3...v1.0.4) (2018-07-10)



## 1.0.1 (2018-02-27)
## v3.0.0
⚠ BREAKING CHANGES
- Refactoring library to minor php version `7.4`

## v2.0.0
⚠ BREAKING CHANGES
- Refactoring library to minor php version `7.1`
- Refactoring to `PSR-4` autoloading
- Removed unnecessary code for previous versions of php
- Improved README file

## v1.0.4
- Fixup: remove version option by composer.json

## v1.0.3
- Add CHANGELOG file

0 comments on commit 783c2d1

Please sign in to comment.