Skip to content

Commit bcafd6e

Browse files
committed
fix packaging
1 parent f6a3971 commit bcafd6e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
shell: bash
3131

3232
env:
33-
pdversion: pd-0.56-2
33+
PDVERSION: pd-0.56-2
3434

3535
steps:
3636
- uses: actions/checkout@v5
@@ -49,8 +49,8 @@ jobs:
4949
run: |
5050
echo "local_short_commands=true" >> $GITHUB_ENV
5151
git submodule init && git submodule update
52-
curl -L -o pd.zip "http://msp.ucsd.edu/software/${pdversion}.msw.zip"
53-
unzip pd.zip
52+
curl -O "http://msp.ucsd.edu/Software/$PDVERSION.msw.zip"
53+
unzip "$PDVERSION.msw.zip"
5454
5555
# ---- build ----
5656
- name: configure
@@ -62,7 +62,7 @@ jobs:
6262

6363
- name: make (windows)
6464
if: matrix.os == 'windows-latest'
65-
run: make PDBINPATH="$pdversion/bin" PDINCLUDEDIR="$pdversion/src" CFLAGS=-march=x86-64
65+
run: make PDBINPATH="$PDVERSION/bin" PDINCLUDEDIR="$PDVERSION/src" CFLAGS=-march=x86-64
6666

6767
# ---- package ----
6868
- name: package (unix)

0 commit comments

Comments
 (0)