From e54517c142e225ded4309c1e4a66d6eacf34ab0d Mon Sep 17 00:00:00 2001 From: Jared Marcotte Date: Wed, 12 Nov 2025 16:09:27 -0500 Subject: [PATCH] Add virtualenv to make commands --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f78743a..fc83db4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,9 +27,9 @@ jobs: - name: Install packages run: pipenv install - name: Deploy - run: make deploy + run: pipenv run make deploy - name: Zip Sample Data - run: make release-zip-sample-data + run: pipenv run make release-zip-sample-data - name: Publish Sample Data uses: actions/upload-artifact@v4 with: @@ -39,4 +39,4 @@ jobs: - name: Sync Labels env: GITHUB_ACCESS_TOKEN: ${{ secrets.LABEL_TOKEN }} - run: make labels + run: pipenv run make labels