Skip to content

Commit

Permalink
Fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
julianschuler committed Oct 1, 2024
1 parent 93a3824 commit 4a3fe13
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Release
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
- 'v[0-9]+.[0-9]+.[0-9]+'

jobs:
build:
Expand All @@ -12,10 +12,10 @@ jobs:
matrix:
include:
- os: ubuntu-latest
ext: ""
ext: ''
target: x86_64-unknown-linux-gnu
- os: windows-latest
ext: ".exe"
ext: '.exe'
target: x86_64-pc-windows-msvc
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -24,7 +24,7 @@ jobs:
with:
fetch-depth: 0
- name: Install dependencies
if: ${{ matrix.os == "ubuntu-latest" }}
if: ${{ matrix.os == 'ubuntu-latest' }}
run: sudo apt update && sudo apt install libwayland-dev
- name: Build
run: cargo build --release --target ${{ matrix.target }}
Expand Down Expand Up @@ -52,5 +52,5 @@ jobs:
with:
name: Concavum customizer ${{ github.ref_name }}
body: The executables for the concavum customizer ${{ github.ref_name }}.
files: "*"
files: '*'
fail_on_unmatched_files: true

0 comments on commit 4a3fe13

Please sign in to comment.