Skip to content

Commit 27b5482

Browse files
authored
fix: create-release job in github workflow (#4)
Signed-off-by: Cesar Berrospi Ramis <[email protected]>
1 parent e1644fc commit 27b5482

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

.github/workflows/build.yaml

+11-5
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)