We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a46a6f5 commit eb6fa08Copy full SHA for eb6fa08
.github/workflows/release.yml
@@ -132,7 +132,11 @@ jobs:
132
- name: Checkout
133
uses: actions/checkout@v4
134
with:
135
- ref: ${{ github.ref_name }}
+ fetch-depth: 0
136
+
137
+ - name: Get Source Branch
138
+ id: source-branch
139
+ run: echo "BUMP_BRANCH=$(git name-rev --name-only --exclude=tags/* HEAD)" >> $GITHUB_ENV
140
141
- name: Setup Babashka
142
uses: DeLaGuardo/[email protected]
@@ -142,4 +146,5 @@ jobs:
146
- name: Bump Version
143
147
env:
144
148
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
149
+ SOURCE_BRANCH: ${{ env.BUMP_BRANCH}}
145
150
run: bb ci:bump-version-and-push "${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com" "${{ github.actor }}" --force
0 commit comments