Skip to content

Commit

Permalink
PKG: fixes to indygreg variable for inline strings
Browse files Browse the repository at this point in the history
  • Loading branch information
peircej committed Jun 15, 2023
1 parent 79c3aeb commit 5757536
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ jobs:

steps:
- uses: actions/checkout@master
with:
path: psychopy

- name: Unpack portable Python distro
run: |
Expand All @@ -47,8 +45,8 @@ jobs:
else
echo "unknown OS ${{ runner.os }}"
fi
fname="cpython-${{ matrix.python-version }}+{{ matrix.indygreg-release }}-$arch-install_only.tar.gz"
indygreg="https://github.com/indygreg/python-build-standalone/releases/download/{{ matrix.indygreg-release }}"
fname="cpython-${{ matrix.python-version }}+${{ matrix.indygreg-release }}-$arch-install_only.tar.gz"
indygreg="https://github.com/indygreg/python-build-standalone/releases/download/${{ matrix.indygreg-release }}"
url="$indygreg/$fname"
echo $url
# fetch the files
Expand Down Expand Up @@ -83,6 +81,10 @@ jobs:
pip install psychopy-sounddevice psychopy-pyo psychopy-legacy-mic psychopy-connect psychopy-crs psychopy-emotiv psychopy-gammasci psychopy-mri-emulator psychopy-visionscience
pip install moviepy

- name: BUild binary (windows)
if: runner.os == 'Windows'
run:

# - name: Make binary build
# run:
# if [ "${{ runner.os }}" == "Windows" ]
Expand Down

0 comments on commit 5757536

Please sign in to comment.