diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2022-04-20 16:56:36 -0600 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2022-04-20 16:56:36 -0600 |
| commit | 57f21de16d19b7f38425de57b47c93d7257752ad (patch) | |
| tree | 61818869051494bf95d002283bd31938a26064a5 | |
| parent | 577f8e78a9f7bb443d5a039aa249b3459a16b2d7 (diff) | |
install required Linux packages in release job [skip ci]
| -rw-r--r-- | .github/workflows/release.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0d9080f6..bb1cfc61 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,6 +12,11 @@ jobs: build: needs: activate runs-on: ubuntu-latest + env: + ASCIIDOCTOR_DIAGRAM_VERSION: '~> 2.2' + PRAWN_GMAGICK_VERSION: '0.0.9' + PYGMENTS_VERSION: '~> 2.0' + RGHOST_VERSION: '0.9.7' steps: - name: Checkout uses: actions/checkout@v2 @@ -19,6 +24,10 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: '3.1' + - name: Install Linux packages + run: | + sudo apt-get update + sudo apt-get install ghostscript poppler-utils libgraphicsmagick1-dev - name: Configure Bundler run: | bundle config --local path .bundle/gems |
