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 3924e0f commit e4d87db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
# bun --help
/home/runner/.bun/bin/bun --help
- name: install dependencies
run: bun install
run: /home/runner/.bun/bin/bun install
- name: build package
run: bun run build
run: /home/runner/.bun/bin/bun run build
# - name: run test suites
# run: npm test

Expand Down

0 comments on commit e4d87db

Please sign in to comment.