Skip to content

Commit

Permalink
chore: Bump version (#4)
Browse files Browse the repository at this point in the history
* chore: add prerelease arg in pipeline

Signed-off-by: Sai Ranjit Tummalapalli <[email protected]>

* chore: add gh token variable

Signed-off-by: Sai Ranjit Tummalapalli <[email protected]>

* chore: bump package version

Signed-off-by: Sai Ranjit Tummalapalli <[email protected]>

* chore: update git username and email

Signed-off-by: Sai Ranjit Tummalapalli <[email protected]>

---------

Signed-off-by: Sai Ranjit Tummalapalli <[email protected]>
  • Loading branch information
sairanjit authored Oct 5, 2023
1 parent 7b3343c commit db9f95c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,15 @@ jobs:

- name: Publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
shell: bash
run: |
git config --global user.email "sairanjit.tummalapalli@ayanworks.com"
git config --global user.name "Sai Ranjit Tummalapalli"
git config --global user.email "amit.padmani@ayanworks.com"
git config --global user.name "Amit Padmani"
if [ ${{ inputs.release-type }} == 'alpha' ]; then
pnpm run --dir packages/${{ inputs.package }} release ${{ inputs.release-type }} --npm.tag=alpha
pnpm run --dir packages/${{ inputs.package }} release --preRelease=${{ inputs.release-type }} --npm.tag=alpha
else
pnpm run --dir packages/${{ inputs.package }} release ${{ inputs.release-type }} --npm.tag=latest
fi
3 changes: 2 additions & 1 deletion .release-it.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"commitArgs": ["--signoff"]
},
"github": {
"release": true
"release": true,
"autoGenerate": true
}
}
2 changes: 1 addition & 1 deletion packages/ssi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@adeya/ssi",
"version": "0.0.1-alpha.1",
"version": "0.0.1-alpha.2",
"license": "Apache-2.0",
"main": "build/index",
"source": "src/index",
Expand Down

0 comments on commit db9f95c

Please sign in to comment.