public-health-ch/ansible/roles/dev-sec.ssh-hardening/.github/workflows/release.yml

69 lines
2 KiB
YAML
Raw Normal View History

2020-05-15 20:41:39 +00:00
name: New release
on:
push:
branches:
- master
jobs:
generate_changelog:
runs-on: ubuntu-latest
name: create release draft
steps:
- uses: actions/checkout@v1
- 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
2021-02-18 15:40:18 +00:00
uses: charmixer/auto-changelog-action@8095796
with:
token: ${{ secrets.GITHUB_TOKEN }}
future_release: ${{ steps.version.outputs.next-version }}
- name: Generate changelog for the release
uses: charmixer/auto-changelog-action@8095796
2020-05-15 20:41:39 +00:00
with:
token: ${{ secrets.GITHUB_TOKEN }}
since_tag: ${{ steps.previoustag.outputs.tag }}
2021-02-18 15:40:18 +00:00
future_release: ${{ steps.version.outputs.next-version }}
output: CHANGELOGRELEASE.md
- name: push changelog
uses: github-actions-x/commit@v2.6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
push-branch: 'master'
commit-message: 'update changelog'
force-add: 'true'
files: CHANGELOG.md
name: dev-sec CI
email: hello@dev-sec.io
2020-05-15 20:41:39 +00:00
- name: Read CHANGELOG.md
id: package
uses: juliangruber/read-file-action@v1
with:
2021-02-18 15:40:18 +00:00
path: ./CHANGELOGRELEASE.md
2020-05-15 20:41:39 +00:00
- 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