Skip to content

Commit

Permalink
chore(ci): add pre release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomas Peterka committed Feb 13, 2024
1 parent b2aa26c commit dd706c3
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: 'What is the next version?'

on:
workflow_dispatch:

jobs:
release:
name: Get Next Release
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/semantic-release@main
id: semantic
with:
changelog: true

- name: Changelog
run: echo "${{ steps.semantic.outputs.changelog }}"

0 comments on commit dd706c3

Please sign in to comment.