Skip to content

Commit 2f47a77

Browse files
authored
Merge pull request #155 from spicecodecli/publishing-workflow-fixes
Publishing workflow fixes
2 parents ecedee6 + 6abcf19 commit 2f47a77

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/publishing.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
suffix: ${{ steps.release.outputs.suffix }}
2121
tag_name: ${{ steps.release.outputs.tag_name }}
2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v3
2424

2525
- name: Extract tag and Details
2626
id: release
@@ -70,7 +70,7 @@ jobs:
7070
needs: [details, check_pypi]
7171
runs-on: ubuntu-latest
7272
steps:
73-
- uses: actions/checkout@v2
73+
- uses: actions/checkout@v3
7474

7575
- name: Set up Python
7676
uses: actions/setup-python@v4
@@ -97,7 +97,7 @@ jobs:
9797
python setup.py sdist bdist_wheel
9898
9999
- name: Upload artifacts
100-
uses: actions/upload-artifact@v3
100+
uses: actions/upload-artifact@v2
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@v3
115+
uses: actions/download-artifact@v2
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@v3
136+
uses: actions/download-artifact@v2
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.0", # version 2.0.0 = all features from N2
9+
version="2.1.1", # 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)