From e5d37e0a974c4a6ba1fefd07b510a61259e3ac09 Mon Sep 17 00:00:00 2001 From: Matan Kushner Date: Sat, 5 Oct 2019 22:23:03 +0900 Subject: [PATCH] ci: Fix the use of COMMIT_TAG when bumping brew formula --- .github/workflows/workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 70aa16eb..8a779949 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -161,7 +161,7 @@ jobs: steps: - uses: actions/checkout@v1 - run: export COMMIT_TAG=$(git describe --tags) - - run: brew bump-formula-pr --url=https://github.com/starship/starship/archive/$COMMIT_TAG.tar.gz --message="Automated release pull request using continuous integration." --no-browse -v starship --force + - run: brew bump-formula-pr --url=https://github.com/starship/starship/archive/${COMMIT_TAG}.tar.gz --message="Automated release pull request using continuous integration." --no-browse -v starship --force env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}