Skip to content

fix: Always mark bot as online (#48) #20

fix: Always mark bot as online (#48)

fix: Always mark bot as online (#48) #20

on:
push:
branches:
- main
name: Create tag & GitHub release from conventional commits
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
token: ${{ secrets.PAT }}
- name: Conventional Changelog Action
id: changelog
uses: TriPSs/conventional-changelog-action@v3
with:
output-file: "false"
skip-ci: "false"
github-token: ${{ secrets.PAT }}
version-file: "Cargo.toml"
version-path: "package.version"
- name: Create Release
uses: softprops/action-gh-release@v1
if: ${{ steps.changelog.outputs.skipped == 'false' }}
with:
tag_name: ${{ steps.changelog.outputs.tag }}
body: ${{ steps.changelog.outputs.clean_changelog }}
token: ${{ secrets.PAT }}