Skip to content

Commit

Permalink
debug workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Sup2point0 authored Jan 29, 2025
1 parent b0dac48 commit bbc428a
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: './site'

steps:
- name: 'git / checkout'
Expand All @@ -20,7 +23,7 @@ jobs:
bundler-cache: false

- name: 'ruby / install'
run: bundle install
run: cd .. && bundle install

- name: 'node / setup'
uses: actions/setup-node@v4
Expand All @@ -30,14 +33,12 @@ jobs:
cache-dependency-path: './site/package-lock.json'

- name: 'node / install'
run: cd site && npm install
run: npm install

- name: 'svelte / build'
env:
BASE_PATH: '/${{ github.event.repository.name }}/site'
run: |
cd site
npm run buildx
run: npm run buildx

- name: 'github / upload artifacts'
uses: actions/upload-pages-artifact@v3
Expand Down

0 comments on commit bbc428a

Please sign in to comment.