Skip to content

Commit dc903fd

Browse files
committed
Fixed binary export by removing unnecessary quotes in binary name evaluation
1 parent 828c910 commit dc903fd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/pre-releases.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ env:
99
CARGO_TERM_COLOR: always
1010

1111
jobs:
12-
publish:
13-
name: "Tagged release"
12+
publish-rc:
13+
name: "Tagged pre-release"
1414
runs-on: "ubuntu-latest"
1515

1616
steps:
@@ -42,6 +42,6 @@ jobs:
4242
title: "${{ steps.tagName.outputs.tag }}"
4343
files: |
4444
LICENSE
45-
"audeye-${{ steps.tagName.outputs.tag }}-linux-amd64"
45+
audeye-${{ steps.tagName.outputs.tag }}-linux-amd64
4646
4747

.github/workflows/releases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
title: "${{ steps.tagName.outputs.tag }}"
4343
files: |
4444
LICENSE
45-
"audeye-${{ steps.tagName.outputs.tag }}-linux-amd64"
45+
audeye-${{ steps.tagName.outputs.tag }}-linux-amd64
4646
4747
publish-cargo:
4848
name: "Crates.io release"

0 commit comments

Comments
 (0)