Skip to content

Commit

Permalink
use github workflow to update version.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed Nov 22, 2023
1 parent 3d13177 commit cb06623
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/bumpversion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,20 @@ jobs:
- uses: actions/checkout@v3
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/github-tag-action@v5.5
uses: mathieudutour/github-tag-action@v6.1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
create_annotated_tag: true
default_bump: patch
dry_run: false
tag_prefix: manic-
write-version:
runs-on: ubuntu-latest
name: Write Version to File
steps:
- uses: actions/checkout@master
- name: Update version
uses: brettdorrans/[email protected]
with:
filename: '/.version.txt'
placeholder: '${VERSION}'

0 comments on commit cb06623

Please sign in to comment.