Skip to content

Commit aafd8ce

Browse files
committed
ci(release): fixup error
shell: command not found
1 parent 7dc2a5c commit aafd8ce

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ jobs:
3030
- uses: actions/checkout@v3
3131
- name: Install
3232
run: |
33-
PROJECT=$(shell python3 -c "from xkits_command.attribute import __project__; print(__project__)")
34-
VERSION=$(shell python3 -c "from xkits_command.attribute import __version__; print(__version__)")
33+
PROJECT=$(python3 -c "from xkits_command.attribute import __project__; print(__project__)")
34+
VERSION=$(python3 -c "from xkits_command.attribute import __version__; print(__version__)")
3535
while true; do python -m pip install $PROJECT==$VERSION && break || sleep 5; done

0 commit comments

Comments
 (0)