Skip to content

Commit 7168b65

Browse files
authored
Merge pull request #156 from spicecodecli/publishing-workflow-fix
Publishing workflow fix
2 parents 2f47a77 + a53a787 commit 7168b65

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/publishing.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
python setup.py sdist bdist_wheel
9898
9999
- name: Upload artifacts
100-
uses: actions/upload-artifact@v2
100+
uses: actions/upload-artifact@v4
101101
with:
102102
name: dist
103103
path: dist/
@@ -112,7 +112,7 @@ jobs:
112112
id-token: write
113113
steps:
114114
- name: Download artifacts
115-
uses: actions/download-artifact@v2
115+
uses: actions/download-artifact@v4
116116
with:
117117
name: dist
118118
path: dist/
@@ -133,7 +133,7 @@ jobs:
133133
fetch-depth: 0
134134

135135
- name: Download artifacts
136-
uses: actions/download-artifact@v2
136+
uses: actions/download-artifact@v4
137137
with:
138138
name: dist
139139
path: dist/

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name="spicecode",
9-
version="2.1.1", # version 2.0.0 = all features from N2
9+
version="2.1.2", # version 2.0.0 = all features from N2
1010
packages=find_packages(exclude=["spicecode-venv", "spicecode.egg-info"]),
1111
install_requires=install_requires,
1212
entry_points={

0 commit comments

Comments
 (0)