From e9a5361a8fd643bcf4bb6a069815ab43ad2e78b8 Mon Sep 17 00:00:00 2001 From: David Stevens Date: Thu, 13 Jun 2024 13:50:15 +0200 Subject: [PATCH] fix: Add missing build dependencies --- .github/workflows/release.yaml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 844f7af..6061283 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -13,7 +13,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: taiki-e/create-gh-release-action@v1 + # v1 tag as of 2024-06-13 + - uses: taiki-e/create-gh-release-action@72d65cee1f8033ef0c8b5d79eaf0c45c7c578ce3 with: # (required) GitHub token for creating GitHub Releases. token: ${{ secrets.GITHUB_TOKEN }} @@ -28,7 +29,13 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: taiki-e/upload-rust-binary-action@v1 + # Install dependencies + # latest commit as of 2024-06-13 + - uses: awalsh128/cache-apt-pkgs-action@f2fc6d1af4d6abf8a4dcd37fd74a9a15c2273b9f + with: + packages: libssl-dev + # v1.21.0 as of 2024-06-13 + - uses: taiki-e/upload-rust-binary-action@b988355f8b505d51359af5c8d4afc3646c3fac1e with: bin: prodzilla target: ${{ matrix.target }}