Skip to content

Commit d7f20d8

Browse files
committed
ci: ????????
1 parent 28a7e40 commit d7f20d8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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 "[email protected]"
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

0 commit comments

Comments
 (0)