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 34d1b17 commit ddbb27fCopy full SHA for ddbb27f
.github/workflows/tag-and-release.yml
@@ -26,8 +26,13 @@ jobs:
26
uses: hyper63/hyper-ci-bump@main
27
with:
28
bump-to: ${{github.event.inputs.version}}
29
- package: ${{github.event.inputs.package}}
30
- runtime: ${{github.event.inputs.runtime}}
31
- name: push
32
run: |
33
git push --follow-tags
+ - name: create github release
+ if: steps.bump.outputs.tag
34
+ uses: softprops/action-gh-release@v1
35
+ with:
36
+ tag_name: ${{steps.bump.outputs.tag}}
37
+ env:
38
+ GITHUB_TOKEN: ${{ secrets.CI_GITHUB_TOKEN }}
0 commit comments