Skip to content

Commit

Permalink
[FUZB-92] Signed branch
Browse files Browse the repository at this point in the history
  • Loading branch information
EchoStatements committed Apr 9, 2024
1 parent f3ec041 commit a7c9fa2
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,14 @@ runs:
- name: Run poetry update
if: env.RUN_UPDATE != 'false'
run: |
UPDATE_MESSAGE=$(poetry update | grep -i 'updating' | grep -v 'Updating dependencies' | sed 's/Updating//g')
echo $UPDATE_MESSAGE
echo "UPDATE_MESSAGE=$UPDATE_MESSAGE" >> $GITHUB_ENV
poetry install --no-interaction --no-root
poetry update | grep -i 'updating' | grep -v 'Updating dependencies' | sed 's/Updating//g' > /var/tmp/updated_deps.txt
cat /var/tmp/updated_deps.txt
{
echo "UPDATE_MESSAGE<<EOF"
cat /var/tmp/updated_deps.txt
echo "EOF"
} >> $GITHUB_ENV
shell: bash

#----------------------------------------------
Expand Down

0 comments on commit a7c9fa2

Please sign in to comment.