From 55c6c4040c4a3e2900381a520cb0d19dafc1e49b Mon Sep 17 00:00:00 2001 From: Masao Takaku Date: Sat, 9 Mar 2024 14:00:49 +0900 Subject: [PATCH] change order of gmagick --- .github/workflows/publish.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b0b22bc..4dac2d6 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,16 +14,16 @@ jobs: uses: actions/checkout@v3 - name: Setup Pages uses: actions/configure-pages@v3 + - name: Install GraphicMagick + run: | + sudo apt-get install -y build-essential libgraphicsmagick1-dev + sudo apt-get install -y graphicsmagick-imagemagick-compat graphicsmagick-libmagick-dev-compat - name: Install Ruby and Jekyll uses: ruby/setup-ruby@v1 with: ruby-version: '3.2' bundler-cache: true cache-version: 0 - - name: Install GraphicMagick - run: | - sudo apt-get install -y build-essential libgraphicsmagick1-dev - sudo apt-get install -y graphicsmagick-imagemagick-compat graphicsmagick-libmagick-dev-compat - name: Generate Site run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" env: