Releases: fwilhe2/bump-version
Releases · fwilhe2/bump-version
Release 0.1.8
Fix release workflow - use gh cli because the action is deprecated - only commit changelog if changes exist
Release 0.1.7
Update nodejs to 20
Release 0.1.6
Update dependencies to include new github 'write-output' function
Release 0.1.5
Merge pull request #381 from fwilhe2/dependabot/npm_and_yarn/eslint-p…
Release 0.1.4
Update dependencies
Release 0.1.3
Changes
Configure version component via workflow_dispatch
If you want to select a version number component to update when triggering a release via workflow_dispatch
, you might want to use inputs as in this example.
on:
push:
workflow_dispatch:
inputs:
component:
description: 'Version component to increment'
required: true
default: 'patch'
jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Get Version Number
uses: fwilhe2/bump-version@main
id: bump
with:
component: ${{ github.event.inputs.component }}
Release 0.1.2
Publish to GitHub Marketplace
0.1.1
Rename action for publishing
Release 0.1.0
New Features
You can select the version component to update.
By default, the minor
version is updated.
Valid values are major
, minor
, patch
.
Example to update the patch
version:
- uses: fwilhe2/bump-version@main
id: bump
with:
component: patch
- run: echo ${{ steps.bump.outputs.newVersion }}