Skip to content

chore: dummy commit to trigger auto release #3

chore: dummy commit to trigger auto release

chore: dummy commit to trigger auto release #3

Workflow file for this run

name: Release
on:
push:
branches:
- master
jobs:
Release:
if: github.repository == 'RaftLib/RaftLib'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: conventional Changelog Action
id: changelog
uses: TriPSs/conventional-changelog-action@v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
version-file: version.json
# skip-version-file: 'true'
- name: create release
uses: actions/create-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 }}