Skip to content

Commit

Permalink
Update PATH when installing in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jeaye committed Jan 27, 2025
1 parent 58f6724 commit 9c1cd66
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/actions/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,11 @@ runs:
- name: Add jank to PATH
shell: bash
working-directory: ${{ github.workspace }}/compiler+runtime
run: ${{ github.workspace }}/compiler+runtime/bin/install
run: |
export DESTDIR=${{ github.workspace }}/jank-install
${{ github.workspace }}/compiler+runtime/bin/install
export PATH="${DESTDIR}/usr/local/bin:${PATH}"
echo "PATH=${PATH}" >> "${GITHUB_ENV}"
- name: Test Clojure CLI workflow
shell: bash
working-directory: ${{ github.workspace }}/clojure-cli
Expand Down

0 comments on commit 9c1cd66

Please sign in to comment.