Skip to content

Commit 3acfd02

Browse files
author
Alecks Gates
committed
Fix dist directory permissions so we can write to it
1 parent 9cb57e8 commit 3acfd02

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/build-publish.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,13 @@ jobs:
6363
build-requirements: 'poetry-core setuptools https://github.com/agates/capnpy/releases/download/0.9.1dev0/capnpy-0.9.1.dev0-py3-none-any.whl'
6464
pip-wheel-args: '-w ./dist --no-deps --no-build-isolation'
6565
system-packages: 'capnproto'
66+
- name: Fix dist permissions
67+
run: sudo chmod -R 777 dist
6668
- name: Rename pypy package build
6769
run: |
6870
old=$(ls -1 dist/*pp39-pypy39_pp73*.whl)
6971
new=$(echo $old | sed -e 's/pp39-pypy39_pp73-manylinux_2_17_x86_64/py3-none-any/')
70-
sudo mv -v "$old" "$new"
72+
mv -v "$old" "$new"
7173
- name: Build sdist
7274
run: poetry build --format sdist
7375
#- name: Publish wheels to PyPI

0 commit comments

Comments
 (0)