File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -98,10 +98,10 @@ jobs:
98
98
EOF
99
99
fi
100
100
- name : Show Formula Contents
101
- run : cat Formula/skidfuscator.rb
101
+ run : cat ./ Formula/skidfuscator.rb
102
102
- name : Update formula
103
103
run : |
104
- FORMULA_PATH="Formula/skidfuscator.rb"
104
+ FORMULA_PATH="./ Formula/skidfuscator.rb"
105
105
NEW_VERSION="${{ steps.extract_version.outputs.version }}"
106
106
NEW_URL="${{ steps.find_asset.outputs.asset_url }}"
107
107
NEW_SHA256="${{ steps.sha256.outputs.sha256 }}"
@@ -119,13 +119,13 @@ jobs:
119
119
echo "Updated formula with version=${NEW_VERSION}, url=${NEW_URL}, sha256=${NEW_SHA256}"
120
120
cat $FORMULA_PATH
121
121
- name : Show updated formula
122
- run : cat Formula/skidfuscator.rb
122
+ run : cat ./ Formula/skidfuscator.rb
123
123
- name : Commit and push changes
124
124
run : |
125
125
if [[ -n "$(git status --porcelain)" ]]; then
126
126
git config user.name "github-actions"
127
127
git config user.email "[email protected] "
128
- git add Formula/skidfuscator.rb
128
+ git add ./ Formula/skidfuscator.rb
129
129
git commit -m "Update Skidfuscator formula to version ${{ steps.extract_version.outputs.version }}"
130
130
git push origin HEAD:main
131
131
else
You can’t perform that action at this time.
0 commit comments