Skip to content

test

test #12

Workflow file for this run

name: test
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
fetch-tags: true
- name: Set up python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Use the output
run: |
git describe --tags --abbrev=0
- name: test
id: generate_changelog
uses: Night-stars-1/changelog-generator-action@main
- name: Use the output
run: |
echo "Generated changelog:"
echo "${{ steps.generate_changelog.outputs.changelog }}"