From 214fea87603268b4daac6e0ee19e67c7d2b82e2f Mon Sep 17 00:00:00 2001 From: Emily Date: Tue, 23 Jul 2024 16:23:03 +0200 Subject: [PATCH] echo formula test --- .github/workflows/update-homebrew.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update-homebrew.yml b/.github/workflows/update-homebrew.yml index 3a8552ae2..fb4ed7d2c 100644 --- a/.github/workflows/update-homebrew.yml +++ b/.github/workflows/update-homebrew.yml @@ -75,9 +75,13 @@ jobs: sed -i 's/__CLI_LINUX_DOWNLOAD_URL__/${CLI_MAC_INTEL_DOWNLOAD_URL}/g' ./Formula/xata.rb sed -i 's/__CLI_LINUX_ARM_DOWNLOAD_URL__/${CLI_MAC_INTEL_DOWNLOAD_URL}/g' ./Formula/xata.rb + - name: Read updated formula file + id: getformula + run: echo "::set-output name=formula::$(cat ./Formula/xata.rb)" + - name: commit changes run: | git status - # git add . + git add . # git commit -m "Update Homebrew Formula" # git push origin main