File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -98,10 +98,10 @@ jobs:
9898 EOF
9999 fi
100100 - name : Show Formula Contents
101- run : cat Formula/skidfuscator.rb
101+ run : cat ./ Formula/skidfuscator.rb
102102 - name : Update formula
103103 run : |
104- FORMULA_PATH="Formula/skidfuscator.rb"
104+ FORMULA_PATH="./ Formula/skidfuscator.rb"
105105 NEW_VERSION="${{ steps.extract_version.outputs.version }}"
106106 NEW_URL="${{ steps.find_asset.outputs.asset_url }}"
107107 NEW_SHA256="${{ steps.sha256.outputs.sha256 }}"
@@ -119,13 +119,13 @@ jobs:
119119 echo "Updated formula with version=${NEW_VERSION}, url=${NEW_URL}, sha256=${NEW_SHA256}"
120120 cat $FORMULA_PATH
121121 - name : Show updated formula
122- run : cat Formula/skidfuscator.rb
122+ run : cat ./ Formula/skidfuscator.rb
123123 - name : Commit and push changes
124124 run : |
125125 if [[ -n "$(git status --porcelain)" ]]; then
126126 git config user.name "github-actions"
127127 git config user.email "github-actions@github.com"
128- git add Formula/skidfuscator.rb
128+ git add ./ Formula/skidfuscator.rb
129129 git commit -m "Update Skidfuscator formula to version ${{ steps.extract_version.outputs.version }}"
130130 git push origin HEAD:main
131131 else
You can’t perform that action at this time.
0 commit comments