Merge pull request #19 from T-Systems-MMS/version_pin #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: New release | |
on: # yamllint disable-line rule:truthy | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
generate_changelog: | |
runs-on: ubuntu-latest | |
name: create release draft | |
steps: | |
- uses: actions/checkout@v3.2.0 | |
with: | |
fetch-depth: 0 | |
- name: 'Get Previous tag' | |
id: previoustag | |
uses: "WyriHaximus/github-action-get-previous-tag@master" | |
env: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
- name: calculate next version | |
id: version | |
uses: patrickjahns/version-drafter-action@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Generate changelog | |
uses: charmixer/auto-changelog-action@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
future_release: ${{ steps.version.outputs.next-version }} | |
- name: Generate readme | |
uses: terraform-docs/gh-actions@main | |
with: | |
working-dir: . | |
output-file: README.md | |
output-method: inject | |
- name: push changelog and readme | |
uses: github-actions-x/commit@v2.9 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
push-branch: 'main' | |
commit-message: 'update changelog' | |
force-add: 'true' | |
files: CHANGELOG.md README.md | |
name: T-Systems MMS | |
email: frage@t-systems-mms.com | |
# do a second checkout to prevent race situation | |
# changelog gets updated but action works on old commit id | |
- uses: actions/checkout@v3.2.0 | |
with: | |
ref: main | |
- name: Generate changelog for the release | |
run: | | |
sed '/## \[${{ steps.previoustag.outputs.tag }}\]/Q' CHANGELOG.md > CHANGELOGRELEASE.md | |
- name: Read CHANGELOG.md | |
id: package | |
uses: juliangruber/read-file-action@v1 | |
with: | |
path: ./CHANGELOGRELEASE.md | |
- name: Create Release draft | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | |
with: | |
release_name: ${{ steps.version.outputs.next-version }} | |
tag_name: ${{ steps.version.outputs.next-version }} | |
body: | | |
${{ steps.package.outputs.content }} | |
draft: true |