Skip to content

Commit

Permalink
replace commit-and-tag
Browse files Browse the repository at this point in the history
  • Loading branch information
marikaner committed Sep 13, 2024
1 parent f66460a commit fc7cabd
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 51,902 deletions.
12 changes: 10 additions & 2 deletions .github/actions/commit-and-tag/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,13 @@ inputs:
version:
description: 'Version to use for the tag and commit message'
runs:
using: 'node20'
main: 'index.js'
using: 'composite'
steps:
- run: |
git add -A
git commit -m "v$VERSION"
git tag "v$VERSION"
git push --follow-tags
shell: bash
env:
VERSION: ${{ inputs.version }}
Loading

0 comments on commit fc7cabd

Please sign in to comment.