Skip to content
This repository has been archived by the owner on Jul 16, 2022. It is now read-only.

Commit

Permalink
fix(github-actions): fix github actions to run bun commands
Browse files Browse the repository at this point in the history
  • Loading branch information
ajimae committed Jul 16, 2022
1 parent 1ef0fbb commit 1dbe5b3
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,14 @@ jobs:
run: curl https://bun.sh/install | bash
- name: setup bun PATH
run: |
export BUN_INSTALL="/home/runner/.bun"
echo PATH="$GITHUB_WORKSPACE/.bun/bin:$PATH" >> $GITHUB_PATH
echo "::::::::::::::::::::::::::::::::::::::::::::::::::::::
bun
echo "::::::::::::::::::::::::::::::::::::::::::::::::::::::
echo "home/runner/.bun/bin/bun" >> $GITHUB_PATH
# echo PATH="$GITHUB_WORKSPACE/.bun/bin:$PATH" >> $GITHUB_PATH
echo "::::::::::::::::::::::::::::::::::::::::::::::::::::::"
which bun
echo $GITHUB_WORKSPACE
ehoc ${{github.workspace}}
echo "::::::::::::::::::::::::::::::::::::::::::::::::::::::"
- name: install dependencies
run: bun install
- name: build package
Expand Down

0 comments on commit 1dbe5b3

Please sign in to comment.