-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: update process to commit and push within the workflow
Tag will also be created in the update-icon-version script
- Loading branch information
1 parent
6cf390f
commit 58ccd20
Showing
2 changed files
with
14 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,10 @@ jobs: | |
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Configure user | ||
run: | | ||
git config user.name "Kajabi Automation Bot" | ||
git config user.email "[email protected]" | ||
- name: Publish Icons | ||
uses: ./.github/workflows/actions/publish-npm | ||
|
@@ -33,3 +37,12 @@ jobs: | |
token: ${{ secrets.NPM_TOKEN }} | ||
version: ${{ inputs.version }} | ||
working-directory: 'libs/icons' | ||
|
||
- name: Commmit version bump | ||
run: | | ||
git config user.name "Kajabi Automation Bot" | ||
git config user.email "[email protected]" | ||
git add libs/icons/package.json package-lock.json | ||
git commit -m "chore(icons): update package lock files for version bump" | ||
git push | ||
shell: bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters