diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index 79b33af..8601f25 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -44,6 +44,7 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 16 + - run: apt update && apt install -y libvips - run: npm ci - run: gulp css - name: Build with Jekyll diff --git a/.gitpod.yml b/.gitpod.yml index 051d798..9ce801a 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,5 +1,5 @@ tasks: - - command: npm install && bundle install && npx gulp css && bundle exec jekyll serve + - command: sudo apt-get update && sudo apt-get -y install libvips && npm install && bundle install && npx gulp css && bundle exec jekyll serve ports: - port: 4000 @@ -7,11 +7,3 @@ ports: name: Website description: Website Preview visibility: public - -github: - prebuilds: - master: true - pullRequests: true - addComment: true - addBadge: true - addLabel: prebuilt-in-gitpod