Skip to content

Commit 3565cd4

Browse files
authored
Fix syntax for GitHub Actions variable expansion
1 parent d843f0b commit 3565cd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release-maui.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
2525
- name: Dotnet Pack
2626
working-directory: ./src/Blazor-ApexCharts-MAUI
27-
run: dotnet pack -c Release -p:Version=${GITHUB_REF##*/v}
27+
run: dotnet pack -c Release -p:Version=${{GITHUB_REF##*/v}}
2828

2929
- name: Dotnet Nuget Push
3030
working-directory: ./src/Blazor-ApexCharts-MAUI/bin/Release

0 commit comments

Comments
 (0)