We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b95f776 commit 4b184deCopy full SHA for 4b184de
.github/workflows/ci.yml
@@ -122,12 +122,18 @@ jobs:
122
shell: sh
123
run: echo "::set-output name=version::$(python cmake-init.pyz --version)"
124
125
+ - uses: mathieudutour/[email protected]
126
+ id: tag_version
127
+ with:
128
+ github_token: ${{ secrets.GITHUB_TOKEN }}
129
+ custom_tag: ${{ steps.version.outputs.version }}
130
+
131
- name: Release
132
uses: softprops/action-gh-release@v1
133
env:
134
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
135
with:
136
files: cmake-init.pyz
137
prerelease: true
- body: Release of version ${{ steps.version.outputs.version }}
- name: ${{ steps.version.outputs.version }}
138
+ body: Release of version ${{ steps.tag_version.outputs.new_tag }}
139
+ name: ${{ steps.tag_version.outputs.new_tag }}
0 commit comments