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 dfd69ac commit d79ce95Copy full SHA for d79ce95
.github/workflows/release.yaml
@@ -13,6 +13,7 @@ on:
13
description: "Is release a pre-release ? "
14
required: true
15
default: false
16
+ type: boolean
17
18
name: Make release
19
@@ -21,7 +22,7 @@ jobs:
21
22
runs-on: ubuntu-latest
23
permissions:
24
id-token: write
- contents: read
25
+ contents: write
26
repository-projects: write
27
steps:
28
- name: Checkout
@@ -55,7 +56,7 @@ jobs:
55
56
env:
57
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
58
with:
- tag_name: ${{ github.event.inputs.source_ref }}
59
+ tag_name: ${{ github.event.inputs.version }}
60
release_name: Release ${{ github.event.inputs.version }}
61
draft: false
- prerelease: ${{ github.event.inputs.source_ref }}
62
+ prerelease: ${{ github.event.inputs.pre_release }}
0 commit comments