From fd2a906273cd3e7f5ee4332fc1745e27a30e44fb Mon Sep 17 00:00:00 2001 From: Charle Demers Date: Thu, 19 Oct 2023 22:03:30 -0400 Subject: [PATCH] fix typo bug --- .github/workflows/update-hombrew-formula.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update-hombrew-formula.yaml b/.github/workflows/update-hombrew-formula.yaml index 591804f..5b0178f 100644 --- a/.github/workflows/update-hombrew-formula.yaml +++ b/.github/workflows/update-hombrew-formula.yaml @@ -26,15 +26,15 @@ jobs: - name: Update Formula run: | VERSION=$(echo $GITHUB_REF | sed 's/refs\/tags\///') - sed -i "s/version \".*\"/version \"$VERSION\"/" homebrew-tools/Formulas/question.rb - sed -i "s|url \".*\"|url \"https://github.com/cdemers/question/releases/download/$VERSION/question.tgz\"|" homebrew-tools/Formulas/question.rb + sed -i "s/version \".*\"/version \"$VERSION\"/" homebrew-tools/Formula/question.rb + sed -i "s|url \".*\"|url \"https://github.com/cdemers/question/releases/download/$VERSION/question.tgz\"|" homebrew-tools/Formula/question.rb - name: Commit and Push Formula run: | cd homebrew-tools git config --local user.email "action@github.com" git config --local user.name "GitHub Action" - git add Formulas/question.rb + git add Formula/question.rb git commit -m "Update question formula to version $VERSION" git push