Skip to content

Commit

Permalink
version autobump
Browse files Browse the repository at this point in the history
  • Loading branch information
wiyarmir committed Feb 12, 2024
1 parent bc4fc49 commit 141f9e7
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
28 changes: 28 additions & 0 deletions .github/workflows/bump_version.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
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}}'"
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=0.0.1
version=0.1.0
# Kotlin
#kotlin.code.style=official
kotlin.js.compiler=ir
Expand Down

0 comments on commit 141f9e7

Please sign in to comment.