Skip to content

Commit

Permalink
tolto set deprecato
Browse files Browse the repository at this point in the history
  • Loading branch information
CcEnrico committed Nov 8, 2024
1 parent 7388e0c commit 9b0ed99
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/latex_pdf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ jobs:
- name: Check if branch is up to date
id: check_changes
run: |
git fetch
if [ -z "$(git diff origin/develop)" ]; then
echo "::set-output name=up_to_date::true"
else
echo "::set-output name=up_to_date::false"
fi
git fetch
if [ -z "$(git diff origin/develop)" ]; then
echo "up_to_date=true" >> $GITHUB_ENV
else
echo "up_to_date=false" >> $GITHUB_ENV
fi
- name: Add, commit and push changes
if: steps.check_changes.outputs.up_to_date == 'false'
Expand Down

0 comments on commit 9b0ed99

Please sign in to comment.