From a6fc0ee10b1dde4cf7c5d87ab88d33ee4e19fddc Mon Sep 17 00:00:00 2001 From: David Benjamin Date: Thu, 17 Aug 2023 11:08:57 -0700 Subject: [PATCH] fix gh workflow (#181) --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bfd6acb..57347c1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -60,10 +60,13 @@ jobs: if: matrix.os == 'ubuntu-latest' uses: softprops/action-gh-release@v1 with: - files: target/x86_64-linux-unknown-gnu/release/hifi-rs + files: target/x86_64-unknown-linux-gnu/release/hifi-rs - name: Build app if: matrix.os == 'macos-latest' run: cargo build --bin hifi-rs --release --target x86_64-apple-darwin + env: + SQLITE3_STATIC: true + DATABASE_URL: "sqlite:///tmp/data.db" - name: Release if: matrix.os == 'macos-latest' uses: softprops/action-gh-release@v1