Skip to content

Commit

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

steps:
- name: 'git / checkout'
Expand All @@ -22,10 +19,10 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
bundler-cache: true
bundler-cache: false

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

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

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

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

0 comments on commit 46292bd

Please # to comment.