We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 880def0 commit c0c9ab4Copy full SHA for c0c9ab4
.github/workflows/v2.yml
@@ -57,9 +57,10 @@ jobs:
57
run: dotnet restore bprintweb
58
- name: Build
59
run: |
60
- $appversion = "${{ github.ref_name }}".substring(1)
61
- echo $appversion
62
- dotnet publish --configuration Release --no-restore /p:Version=$appversion -r linux-arm64 --self-contained bprintweb
+ ref_name="${{ github.ref_name }}"
+ appversion="${ref_name:1}"
+ echo "$appversion"
63
+ dotnet publish --configuration Release --no-restore /p:Version="$appversion" -r linux-arm64 --self-contained bprintweb
64
- name: Zip Release
65
uses: TheDoctor0/zip-release@0.6.0
66
with:
0 commit comments