Skip to content

Commit

Permalink
build: makes build works
Browse files Browse the repository at this point in the history
  • Loading branch information
pftg committed Dec 20, 2024
1 parent 82a2b53 commit 4f6d2fb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/actions/setup-ruby-and-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,16 @@ runs:
bundler-cache: true
cache-version: ${{ inputs.ruby-cache-version }}-v1

- run: sudo apt-get -qq update
shell: bash

- name: Install and cache vips
if: ${{ inputs.cache-apt-packages == 'true' }}
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: libvips libglib2.0-0 libglib2.0-dev libwebp-dev libvips42 libpng-dev
version: tests-v1
version: tests-v2

- run: sudo apt-get -qq update && sudo apt-get install libvips
# fallback if cache version is outdated
- run: sudo apt-get -qq install libvips
shell: bash
1 change: 0 additions & 1 deletion .github/actions/upload-screenshots/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ runs:
using: 'composite'
steps:
- uses: actions/upload-artifact@v4
if: failure()
with:
name: ${{ inputs.name }}
retention-days: 1
Expand Down

0 comments on commit 4f6d2fb

Please sign in to comment.