File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -35,11 +35,13 @@ jobs:
3535 RELEASE_BRANCHES : ^(master|main)$
3636 DEFAULT_BUMP : patch
3737
38- - name : Update manifest.json
38+ - name : Update manifest version
3939 run : |
4040 new_version=$(echo "${{ steps.tag_version.outputs.new_tag }}" | sed 's/^v//')
4141 jq --arg version "$new_version" '.version = $version' public/base.manifest.json > public/base.manifest.json.tmp && mv public/base.manifest.json.tmp public/base.manifest.json
42- git config --global user.name 'Hackertab CI bot'
43- git config --global user.email '2389584+medyo@users.noreply.github.com'
44- git commit -am "Bump manifest version to $new_version" || echo "No changes"
45- git push
42+
43+ - name : Commit manifest changes
44+ uses : stefanzweifel/git-auto-commit-action@v6
45+ with :
46+ commit_message : " ci: Bump manifest version to ${{ steps.tag_version.outputs.new_tag }}"
47+ file_pattern : public/base.manifest.json
You can’t perform that action at this time.
0 commit comments