summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatan Kushner <hello@matchai.me>2019-10-05 22:23:03 +0900
committerMatan Kushner <hello@matchai.me>2019-10-05 22:23:15 +0900
commite5d37e0a974c4a6ba1fefd07b510a61259e3ac09 (patch)
tree1b43615baff755b27b920be567c8fb8945a48bf8
parent153eddda10258599597084728d4bd3b7cb4c3080 (diff)
ci: Fix the use of COMMIT_TAG when bumping brew formula
-rw-r--r--.github/workflows/workflow.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml
index 70aa16eb0..8a779949e 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 }}