You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Bump Gem
v1.1.0
The GitHub action to bump the gem or engine version from the pull request labels.
Required The labels of the pull request separated by comma.
Required The GitHub token to authenticate with GitHub API.
- name: Bump gem version
uses: Thejus-Paul/bump-gem-action@main
with:
labels: ${{ join(github.event.pull_request.labels.*.name, ',') }}
token: ${{ secrets.GITHUB_TOKEN }}
-
Install the dependencies
npm install
-
Make the necessary changes to
action.yml
and/orindex.js
. -
Compile the
index.js
with the dependencies into a single file.npm run build
-
Commit the changes and push to the branch.
git add . git commit -m "Commit message" git tag -a v1.0.0 -m "v1.0.0" git push --follow-tags