Skip to content

Commit d1b905a

Browse files
authored
Fix syntax for GITHUB_REF variable in workflow
1 parent bc693f5 commit d1b905a

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)