Skip to content

Commit 3602bc3

Browse files
committed
fix workflow string literal
1 parent 324b894 commit 3602bc3

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99
contents: write
1010

1111
env:
12-
RELEASE: "v3.3.0-draft"
12+
RELEASE: v3.3.0-draft
1313

1414
name: bundle
1515
jobs:
@@ -31,17 +31,17 @@ jobs:
3131

3232
# Build
3333
- name: Build (Windows)
34-
if: runner.os == "Windows"
34+
if: runner.os == 'Windows'
3535
run: ./bin/bundle.bat
3636

3737
- name: Build (Linux, macOS)
38-
if: runner.os != "Windows"
38+
if: runner.os != 'Windows'
3939
run: ./bin/bundle.sh
4040

4141
# Create a release: https://github.com/softprops/action-gh-release (MIT license)
4242
- name: Release
4343
uses: softprops/action-gh-release@v2
44-
if: $RELEASE != "" && $RELEASE != "no"
44+
if: $RELEASE' != '' && $RELEASE != 'no'
4545
with:
4646
name: $RELEASE
4747
draft: true

0 commit comments

Comments
 (0)