File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -19,11 +19,12 @@ jobs:
19
19
python-version : ${{ vars.PYTHON_VERSION }}
20
20
- name : Install Poetry
21
21
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
25
25
run : poetry build
26
- - uses : actions/upload-artifact@v4
26
+ - name : Upload build artifact
27
+ uses : actions/upload-artifact@v4
27
28
with :
28
29
path : dist/
29
30
if-no-files-found : error
37
38
# permissions:
38
39
# id-token: write
39
40
steps :
40
- - uses : actions/download-artifact@v4
41
+ - name : Download build artifact
42
+ uses : actions/download-artifact@v4
41
43
with :
42
44
path : dist/
43
45
- run : ls -laR
You can’t perform that action at this time.
0 commit comments