From 43034789ab840817fff725d914c6e503f15ad8f0 Mon Sep 17 00:00:00 2001 From: Pedro Castro Date: Thu, 29 Feb 2024 16:26:42 -0300 Subject: [PATCH] run script in env --- .github/workflows/cd.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml index 956cf29e..91effb9c 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/cd.yaml @@ -98,4 +98,4 @@ jobs: run: poetry install --only=dev - name: Run script for changing metadata status run: |- - python .github/workflows/scripts/change_metadata_status.py --modified-files ${{ steps.changed-files.outputs.all_modified_files }} --graphql-url ${{ secrets.BACKEND_GRAPHQL_URL }} --status published --email ${{ secrets.BACKEND_EMAIL }} --password ${{ secrets.BACKEND_PASSWORD }} + poetry run python .github/workflows/scripts/change_metadata_status.py --modified-files ${{ steps.changed-files.outputs.all_modified_files }} --graphql-url ${{ secrets.BACKEND_GRAPHQL_URL }} --status published --email ${{ secrets.BACKEND_EMAIL }} --password ${{ secrets.BACKEND_PASSWORD }}