Skip to content

Commit 5d1ae46

Browse files
committed
style: unify quote style in release.yml
1 parent 10d09ce commit 5d1ae46

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/release.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release
33
on:
44
push:
55
tags:
6-
- 'v*'
6+
- "v*"
77
workflow_dispatch:
88

99
jobs:
@@ -14,14 +14,14 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
include:
17-
- platform: 'macos-latest' # for Arm based macs (M1 and above)
18-
args: '--target aarch64-apple-darwin'
19-
- platform: 'macos-latest' # for Intel based macs
20-
args: '--target x86_64-apple-darwin'
21-
- platform: 'ubuntu-22.04'
22-
args: ''
23-
- platform: 'windows-latest'
24-
args: ''
17+
- platform: "macos-latest" # for Arm based macs (M1 and above)
18+
args: "--target aarch64-apple-darwin"
19+
- platform: "macos-latest" # for Intel based macs
20+
args: "--target x86_64-apple-darwin"
21+
- platform: "ubuntu-22.04"
22+
args: ""
23+
- platform: "windows-latest"
24+
args: ""
2525

2626
runs-on: ${{ matrix.platform }}
2727
steps:
@@ -31,7 +31,7 @@ jobs:
3131
uses: actions/setup-node@v4
3232
with:
3333
node-version: lts/*
34-
cache: 'npm'
34+
cache: "npm"
3535

3636
- name: Install Rust stable
3737
uses: dtolnay/rust-toolchain@stable
@@ -53,8 +53,8 @@ jobs:
5353
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5454
with:
5555
tagName: ${{ github.ref_name }}
56-
releaseName: 'T3Lang v__VERSION__'
57-
releaseBody: 'See the assets to download this version and install.'
56+
releaseName: "T3Lang v__VERSION__"
57+
releaseBody: "See the assets to download this version and install."
5858
releaseDraft: true
5959
prerelease: false
6060
args: ${{ matrix.args }}

0 commit comments

Comments
 (0)