Skip to content

Commit 1df1a19

Browse files
authored
Merge pull request #44 from Tyskiep99/specify_fixed_nodejs_version_in_ci_workflow
Fix: Specify fixed nodejs version in ci workflow and add p3.10 to releases
2 parents 3ff7a14 + c0ac1c8 commit 1df1a19

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: [ 3.6, 3.7, 3.8, 3.9 ]
15+
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10' ]
1616
os: [ ubuntu-18.04, macOS-latest, windows-latest ]
1717

1818
steps:
@@ -79,6 +79,8 @@ jobs:
7979

8080
- name: Setup Node.js
8181
uses: actions/setup-node@v1
82+
with:
83+
node-version: '16'
8284

8385
- name: Setup
8486
run: npm install -g semantic-release @semantic-release/github @semantic-release/changelog @semantic-release/commit-analyzer @semantic-release/git @semantic-release/release-notes-generator semantic-release-pypi
@@ -96,4 +98,4 @@ jobs:
9698
env:
9799
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
98100
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
99-
run: npx semantic-release
101+
run: npx semantic-release

0 commit comments

Comments
 (0)