@@ -20,44 +20,45 @@ jobs:
2020 node-version : 16.x
2121 registry-url : " https://registry.npmjs.org"
2222 - run : yarn
23+ name : Install dependencies
2324 - run : yarn ci
24-
25+ name : Build, Lint and Test
2526 - name : Establish context
2627 id : context
27- uses : dolittle /establish-context-action@v2
28+ uses : woksin-org /establish-context-action@v2
2829
2930 - name : Increment version
3031 id : increment-version
3132 if : ${{ steps.context.outputs.should-publish == 'true' }}
32- uses : dolittle /increment-version-action@v2
33+ uses : woksin-org /increment-version-action@v2
3334 with :
3435 version : ${{ steps.context.outputs.current-version }}
3536 release-type : ${{ steps.context.outputs.release-type }}
3637
3738 - name : Prepend to Changelog
3839 if : ${{ steps.context.outputs.should-publish == 'true' && steps.context.outputs.release-type != 'prerelease' }}
39- uses : dolittle /add-to-changelog-action@v2
40+ uses : woksin-org /add-to-changelog-action@v2
4041 with :
4142 version : ${{ steps.increment-version.outputs.next-version }}
4243 body : ${{ steps.context.outputs.pr-body }}
4344 pr-url : ${{ steps.context.outputs.pr-url }}
4445 changelog-path : CHANGELOG.md
45- user-email : build@dolittle .com
46- user-name : dolittle-build
46+ user-email : build@woksin-org .com
47+ user-name : woksin
4748
4849 - name : Create GitHub Release
4950 if : ${{ steps.context.outputs.should-publish == 'true' }}
50- uses : dolittle /github-release-action@v2
51+ uses : woksin-org /github-release-action@v2
5152 with :
5253 token : ${{ secrets.BUILD_PAT }}
5354 version : ${{ steps.increment-version.outputs.next-version }}
5455 body : ${{ steps.context.outputs.pr-body }}
5556
5657 - name : Release JavaScript
5758 if : ${{ steps.context.outputs.should-publish == 'true' }}
58- uses : dolittle /release-typescript-lib-action@v1
59+ uses : woksin-org /release-typescript-lib-action@v1
5960 with :
6061 version : ${{ steps.increment-version.outputs.next-version }}
6162 root : " ."
6263 env :
63- NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
64+ NODE_AUTH_TOKEN : ${{ secrets.TOKEN_NPM }}
0 commit comments