Skip to content

Commit 48a060b

Browse files
committed
Oops
1 parent c5bdd2c commit 48a060b

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/pypi-release.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,12 @@ jobs:
1919
python-version: ${{ vars.PYTHON_VERSION }}
2020
- name: Install Poetry
2121
run: curl -sSL https://install.python-poetry.org | python3 -
22-
- name: Validate Release Version
23-
run: poetry version -s | grep -E "$(echo "$GITHUB_REF_NAME" | tr -d 'v')"
24-
- name: Publish to PyPI
22+
# - name: Validate Release Version
23+
# run: poetry version -s | grep -E "$(echo "$GITHUB_REF_NAME" | tr -d 'v')"
24+
- name: Build Basilisp distributions
2525
run: poetry build
26-
- uses: actions/upload-artifact@v4
26+
- name: Upload build artifact
27+
uses: actions/upload-artifact@v4
2728
with:
2829
path: dist/
2930
if-no-files-found: error
@@ -37,7 +38,8 @@ jobs:
3738
# permissions:
3839
# id-token: write
3940
steps:
40-
- uses: actions/download-artifact@v4
41+
- name: Download build artifact
42+
uses: actions/download-artifact@v4
4143
with:
4244
path: dist/
4345
- run: ls -laR

0 commit comments

Comments
 (0)