Skip to content

Commit

Permalink
Merge pull request #4 from blyme/move-to-npm
Browse files Browse the repository at this point in the history
bun -> npm
  • Loading branch information
blyme authored Aug 15, 2024
2 parents e94d76a + a28a3fe commit eed7f8e
Show file tree
Hide file tree
Showing 3 changed files with 1,741 additions and 11 deletions.
18 changes: 7 additions & 11 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,26 +30,22 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Bun
uses: oven-sh/setup-bun@v2
- name: Set up Node
uses: actions/setup-node@v4
with:
bun-version: 1.1.22

node-version: 20
cache: "npm"
- name: Install dependencies
run: bun install
run: npm ci
- name: Build
run: bun run build
- name: List dist folder contents
run: ls -al ./dist
- name: List dist/assets folder contents
run: ls -al ./dist/assets
run: npm run build
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload dist folder
path: ./dist
path: "./dist"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
Binary file removed bun.lockb
Binary file not shown.
Loading

0 comments on commit eed7f8e

Please sign in to comment.