We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7275ff7 commit 17496a4Copy full SHA for 17496a4
1 file changed
.github/workflows/update_apps.yml
@@ -25,7 +25,8 @@ jobs:
25
git config --global user.email "actions@github.com"
26
git config --global user.name "GitHub Actions"
27
git add -A
28
- git commit -m "Update $(cat updates_list.txt && rm updates_list.txt)"
+ cat updates_list.txt > /tmp/updates && rm -r updates_list.txt
29
+ git commit -m "Update $(cat /tmp/updates)"
30
31
- name: Push changes
32
run: |
0 commit comments