We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1644fc commit 27b5482Copy full SHA for 27b5482
.github/workflows/build.yaml
@@ -51,11 +51,17 @@ jobs:
51
uses: actions/setup-node@v4
52
with:
53
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
+ - name: Setup Python
+ uses: actions/setup-python@v5
+ 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
63
run: npm audit signatures
- - name: Release
64
+ - name: Run semantic-release
65
env:
66
GH_TOKEN: ${{ secrets.GH_TOKEN }}
- run: npm run semantic-release
67
+ run: npm run semantic-release
0 commit comments