Skip to content

Commit

Permalink
Merge pull request #59 from flexcodelabs/workflow
Browse files Browse the repository at this point in the history
Workflow
  • Loading branch information
bmsteven authored Jul 5, 2023
2 parents 4f26d47 + 01b7048 commit 2232505
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
git config --global user.email "neicoreadams@gmail.com"
git config --global user.name "neicore"
git remote set-url origin https://x-access-token:${{ secrets.TOKEN }}@github.com/${{ github.repository }}
- name: Setup Node
uses: actions/setup-node@v2
with:
Expand Down Expand Up @@ -47,10 +48,11 @@ jobs:
DELETE_BRANCH: false
CHANGELOG_PATH: ./CHANGELOG.md
PACKAGE_JSON_PATH: ./package.json
# Commit and push the latest version
- name: update main branch
# checkout, Commit and push the latest version
- name: update develop branch
run: |
git checkout develop
git add ./package.json
git add ./CHANGELOG.md
git commit -m "Skip CI"
git commit -m "Skip CI: update package version and changelog"
git push
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Build to CJS
- Remove external dependencies

## [0.0.6] - 2023-06-28

### Changed

- Change authentication approach to api_key
- Update README file explaining new authentication approach (api_key)
- Bump package version
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sarufi",
"version": "0.0.5",
"version": "0.0.6",
"description": "Sarufi NodeJs SDK to help you interact with Sarufi Conversational API",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down

0 comments on commit 2232505

Please sign in to comment.