Skip to content

Bump version

Bump version #1

Workflow file for this run

name: Bump version
on:
workflow_dispatch: # Allow manually running
push:
branches:
- main
paths:
- 'Dockerfile'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/github-tag-action@v6.1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
fetch_all_tags: false
default_bump: patch
dry_run: true
- name: Create a GitHub release
uses: ncipollo/release-action@v1.67.0
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: ${{ steps.tag_version.outputs.new_tag }} (auto)
body: ${{ steps.tag_version.outputs.changelog }}