Skip to content

Commit

Permalink
install libxslt-dev before building nginx
Browse files Browse the repository at this point in the history
  • Loading branch information
ashutoshgngwr committed Feb 17, 2023
1 parent 6d6c417 commit f1d628b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/nginx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
tags:
- "v*"

env:
apt_deps: gettext-base build-essential wget libpcre3-dev libssl-dev libxslt-dev zlib1g-dev awscli

jobs:
release-debian-amd64:
name: Release Debian amd64
Expand All @@ -16,7 +19,7 @@ jobs:
- name: Install prerequisites
run: |
apt-get -qq update -y
apt-get -qq install -y gettext-base build-essential wget libpcre3-dev libssl-dev zlib1g-dev awscli
apt-get -qq install -y ${{ env.apt_deps }}
- name: Checkout source
uses: actions/checkout@v3
Expand Down Expand Up @@ -51,7 +54,7 @@ jobs:
distro: bullseye
run: |
apt-get -qq update -y
apt-get -qq install -y gettext-base build-essential wget libpcre3-dev libssl-dev zlib1g-dev awscli
apt-get -qq install -y ${{ env.apt_deps }}
./nginx-build.sh "$(pwd)/${{ env.output_name }}"
- name: Generate artifact checksum
Expand Down

0 comments on commit f1d628b

Please sign in to comment.