Skip to content

fix code style

fix code style #34

Workflow file for this run

name: Create Release
on:
push:
tags:
- '*'
jobs:
reviewdog:
uses: ./.github/workflows/reviewdog.yml
create-release:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
needs:
- reviewdog
steps:
- name: Build Changelog
id: changelog
uses: loopwerk/tag-changelog@v1
with:
token: ${{ github.token }}
- name: Create release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body: ${{steps.changelog.outputs.changelog}}