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 024d4bb commit b16ac61Copy full SHA for b16ac61
.github/workflows/pythonkafkaclient.yml
@@ -48,6 +48,11 @@ jobs:
48
run: |
49
REPO_RELEASE=${{ github.ref_name }}
50
echo "RELEASE_VERSION=${REPO_RELEASE}" >> $GITHUB_ENV
51
+ - name: 'Set release version from latest tag'
52
+ if: ${{ ! contains(github.ref, 'tag') }}
53
+ run: |
54
+ REPO_RELEASE=${{ steps.pythonKafkaClientRelease.outputs.release }}
55
+ echo "RELEASE_VERSION=${REPO_RELEASE}" >> $GITHUB_ENV
56
- name: 'Check out repository from latest tag'
57
uses: actions/checkout@v6
58
with:
0 commit comments