Skip to content

tag

tag #1

Workflow file for this run

name: tag
on:
workflow_dispatch:
branches:
- main
jobs:
tag:
name: tag
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: determine next tag
uses: mathieudutour/[email protected]
id: tag
with:
dry_run: true
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: show tag and changelog
run: |
echo "Tag: ${{ steps.tag.outputs.new_tag }}"
echo "Changelog:"
echo "${{ steps.tag.outputs.changelog }}"