We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 324b894 commit 3602bc3Copy full SHA for 3602bc3
1 file changed
.github/workflows/release.yaml
@@ -9,7 +9,7 @@ permissions:
9
contents: write
10
11
env:
12
- RELEASE: "v3.3.0-draft"
+ RELEASE: v3.3.0-draft
13
14
name: bundle
15
jobs:
@@ -31,17 +31,17 @@ jobs:
31
32
# Build
33
- name: Build (Windows)
34
- if: runner.os == "Windows"
+ if: runner.os == 'Windows'
35
run: ./bin/bundle.bat
36
37
- name: Build (Linux, macOS)
38
- if: runner.os != "Windows"
+ if: runner.os != 'Windows'
39
run: ./bin/bundle.sh
40
41
# Create a release: https://github.com/softprops/action-gh-release (MIT license)
42
- name: Release
43
uses: softprops/action-gh-release@v2
44
- if: $RELEASE != "" && $RELEASE != "no"
+ if: $RELEASE' != '' && $RELEASE != 'no'
45
with:
46
name: $RELEASE
47
draft: true
0 commit comments