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 9d3bb82 commit 2c9d9a4Copy full SHA for 2c9d9a4
.github/workflows/new_release.yml
@@ -20,7 +20,10 @@ jobs:
20
- name: 'Setup Repository (${{github.event.repository.name}})'
21
uses: actions/checkout@v4
22
23
- - name: 'Create new release (${{inputs.version}})'
+ - name: 'Get latest Tag'
24
+ run: echo "LATEST_TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
25
+
26
+ - name: 'Create new release (current: ${{env.LATEST_TAG}}, new: ${{inputs.version}})'
27
uses: ncipollo/release-action@v1
28
with:
29
allowUpdates: false
0 commit comments