File tree Expand file tree Collapse file tree 1 file changed +11
-5
lines changed
Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -51,11 +51,17 @@ jobs:
5151 uses : actions/setup-node@v4
5252 with :
5353 node-version : " lts/*"
54- - name : Install dependencies
55- run : npm clean-install
56- - name : Verify the integrity of provenance attestations and registry signatures for installed dependencies
54+ - name : Setup Python
55+ uses : actions/setup-python@v5
56+ with :
57+ python-version : 3.12
58+ - name : Install Publishing Tools
59+ run : |
60+ pip install bump-my-version
61+ npm install
62+ - name : Verify the integrity of provenance attestations and registry signatures
5763 run : npm audit signatures
58- - name : Release
64+ - name : Run semantic-release
5965 env :
6066 GH_TOKEN : ${{ secrets.GH_TOKEN }}
61- run : npm run semantic-release
67+ run : npm run semantic-release
You can’t perform that action at this time.
0 commit comments