From 666456e4561170fd39cc66a044b9ae017cc01a5c Mon Sep 17 00:00:00 2001 From: John Doty Date: Thu, 15 Aug 2024 11:50:24 -0700 Subject: [PATCH] More release stuff (tools) --- .github/workflows/release.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b03aa0b..acf1c6a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -74,6 +74,18 @@ jobs: - name: Checkout code uses: actions/checkout@v4 + - name: Install packages (linux) + if: matrix.build == 'linux' + run: | + sudo apt-get update + sudo apt-get install -y pandoc + + - name: Install packages (macos) + if: matrix.build == 'macos' || matrix.build == 'arm-macos' + run: | + brew update + brew install pandoc + - name: Install rust uses: dtolnay/rust-toolchain@stable with: