Skip to content

Commit

Permalink
fix: build linux version on ubuntu 22.04
Browse files Browse the repository at this point in the history
  • Loading branch information
mattyg committed Oct 13, 2023
1 parent b55be90 commit 481ed8d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/install-release-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
target: aarch-apple-darwin
- host: macos-11
target: x86_64-apple-darwin
- host: ubuntu-20.04
- host: ubuntu-22.04
target: x86_64-unknown-linux-gnu
- host: windows-2019
target: x86_64-pc-windows-msvc
Expand All @@ -32,7 +32,7 @@ jobs:
with:
go-version: 'stable'
- name: install dependencies (ubuntu only)
if: matrix.platforms.host == 'ubuntu-20.04'
if: matrix.platforms.host == 'ubuntu-22.04'
run: |
sudo apt-get update
sudo apt-get install -y build-essential libssl-dev
Expand All @@ -55,7 +55,7 @@ jobs:
Copy-Item $HcPath -Destination binaries/hc-v${{ github.event.client_payload.hc_version }}-${{ matrix.platforms.target }}.exe
- name: Build binaries (Linux & Macos only)
if: matrix.platforms.host == 'macos-11' || matrix.platforms.host == 'macos-13' || matrix.platforms.host == 'ubuntu-20.04'
if: matrix.platforms.host == 'macos-11' || matrix.platforms.host == 'macos-13' || matrix.platforms.host == 'ubuntu-22.04'
run: |
cargo install --version ${{ github.event.client_payload.lair_version }} lair_keystore
LAIR_PATH=$(which lair-keystore)
Expand Down

0 comments on commit 481ed8d

Please sign in to comment.