Skip to content

Commit

Permalink
test: testing git version output
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickMenoti committed Nov 1, 2023
1 parent 667df17 commit 8c7418f
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/bump_formula.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Bump Homebrew formula

on:
push:
tags: '*'
branches:
- workflow-and-vulcan

jobs:
test_ver:
name: test version print
runs-on: ubuntu-latest
steps:
- name: Capture git describe output
id: describe
run: |
echo "::set-output name=tag::$(git describe --tags)"
- name: Use git describe output
run: echo ${{ steps.describe.outputs.tag }}
# homebrew:
# name: Bump Homebrew formula
# runs-on: ubuntu-latest
# steps:
# - uses: dawidd6/action-homebrew-bump-formula@v3
# with:
# token: ${{secrets.RELEASE_GITHUB_TOKEN}}
# formula: azion

0 comments on commit 8c7418f

Please sign in to comment.