From 4a3fe134d8dbea67c971a50e6b5be7e14d4812ea Mon Sep 17 00:00:00 2001 From: Julian Schuler Date: Tue, 1 Oct 2024 19:35:27 +0200 Subject: [PATCH] Fix quotes --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 256e101..4699aae 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: @@ -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: @@ -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 }} @@ -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