0.1.0 #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Version Bump | |
on: | |
release: | |
types: | |
- created | |
workflow_dispatch: | |
inputs: | |
auto-version-bump: | |
description: 'Should we bump the version?' | |
required: true | |
default: 'false' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Latest Commit | |
uses: actions/checkout@v3 | |
- name: Bump Version | |
id: bump | |
uses: Plugily-Projects/version-bump-action@v6 | |
with: | |
github-token: ${{ secrets.github_token }} | |
git-committer: 'BOT' | |
auto-version-bump: true | |
- name: Print Version | |
run: "echo 'New Version: ${{steps.bump.outputs.version}}'" |