feat: Simplify API by getting rid of SiteMetadata #12
Workflow file for this run
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: Create Release | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
create-release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Create changelog text | |
id: changelog | |
uses: loopwerk/tag-changelog@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
exclude_types: other,doc,chore,build | |
- name: Create release | |
uses: actions/create-release@latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release ${{ github.ref }} | |
body: ${{ steps.changelog.outputs.changes }} | |
- name: Read CHANGELOG.md | |
id: readfile | |
uses: juliangruber/read-file-action@v1 | |
with: | |
path: ./CHANGELOG.md | |
- name: Write to CHANGELOG.md | |
uses: DamianReeves/write-file-action@master | |
with: | |
path: ./CHANGELOG.md | |
contents: ${{ steps.changelog.outputs.changelog }}${{ steps.readfile.outputs.content }} | |
write-mode: overwrite | |
- name: Commit and push CHANGELOG.md | |
uses: EndBug/add-and-commit@v7 | |
with: | |
add: CHANGELOG.md | |
message: "chore: Update CHANGELOG.md [skip ci]" | |
branch: main |