Skip to content

Release

Release #7

Workflow file for this run

name: "RELEASE"
on:
workflow_dispatch:
jobs:
release:
name: Create release tag
runs-on: ubuntu-latest
steps:
- name: Checkout repository (full-depth)
uses: actions/checkout@v4
with: { fetch-depth: 0 } # Required to determine version
- name: Get next release version
uses: dronetag/actions/get-next-version@main
id: get-next-version
- name: Create the tag
run: |
ls -al # just for testing the changelog artifact
git config --local user.email "" && git config --local user.name "GitHub Action"
git tag -a "v${{ steps.get-next-version.outputs.version }}" -m "${{ steps.get-next-version.outputs.changelog }}"
git push origin "v${{ steps.get-next-version.outputs.version }}"