Skip to content

Commit

Permalink
Use relative paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Schwager committed Jan 6, 2021
1 parent 680c511 commit 30c4eee
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/release.yml
Expand Up @@ -193,8 +193,9 @@ jobs:
python-version: 3.7
- name: Build the wheels
env:
SEMGREP_CORE_BIN: artifacts/semgrep-core
SPACEGREP_BIN: artifacts/spacegrep
# Relative because build-wheels does a 'cd semgrep'
SEMGREP_CORE_BIN: ../artifacts/semgrep-core
SPACEGREP_BIN: ../artifacts/spacegrep
run: ./scripts/build-wheels.sh
- name: Upload artifacts
uses: actions/upload-artifact@v1
Expand Down Expand Up @@ -224,8 +225,9 @@ jobs:
run: apt-get update && apt install -y zip musl-tools
- name: Build the wheels
env:
SEMGREP_CORE_BIN: ocaml-build-artifacts/bin/semgrep-core
SPACEGREP_BIN: ocaml-build-artifacts/bin/spacegrep
# Relative because build-wheels does a 'cd semgrep'
SEMGREP_CORE_BIN: ../ocaml-build-artifacts/bin/semgrep-core
SPACEGREP_BIN: ../ocaml-build-artifacts/bin/spacegrep
run: ./scripts/build-wheels.sh
- name: Upload artifacts
uses: actions/upload-artifact@v1
Expand Down

0 comments on commit 30c4eee

Please sign in to comment.