We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 414272e commit 1c65afdCopy full SHA for 1c65afd
.github/workflows/rebuild-pots.yaml
@@ -65,19 +65,17 @@ jobs:
65
git commit -m "Update installer en_US pot"
66
fi
67
68
- echo "::echo::on"
69
-
70
# Check for local commits
71
if [[ $(git diff --name-only "@{upstream}..") ]]
72
then
73
- echo "::set-output name=has_changes::true"
+ echo "has_changes=true" >> $GITHUB_ENV
74
else
75
- echo "::set-output name=has_changes::false"
+ echo "has_changes=false" >> $GITHUB_ENV
76
77
78
# Get rid of all other changes
79
git checkout -- .
80
git clean -fd
81
- - if: ${{ steps.stage_changes.outputs.has_changes == 'true' }}
+ - if: ${{ env.has_changes == 'true' }}
82
name: Push changes
83
run: git push
0 commit comments