Skip to content

Commit 13a8a0f

Browse files
committed
bash
1 parent 398fa8d commit 13a8a0f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

action.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,15 @@ runs:
1717
using: "composite"
1818
steps:
1919
- name: Bump ApplicationVersion (build version)
20+
shell: bash
2021
run: |
2122
echo 'Setting ApplicationVersion (build version) to ${{ inputs.version }}'
2223
sed -rn 's|(<ApplicationVersion>)(.*)(</ApplicationVersion>)|Old: \1\2\3|p' ${{ inputs.csproj }}
2324
sed -rE -i 'notneeded.bak' 's|(<ApplicationVersion>)(.*)(</ApplicationVersion>)|<ApplicationVersion>${{ inputs.version }}</ApplicationVersion>|g' ${{ inputs.csproj }}
2425
sed -rn 's|(<ApplicationVersion>)(.*)(</ApplicationVersion>)|New: \1\2\3|p' ${{ inputs.csproj }}
2526
2627
- name: Bump ApplicationDisplayVersion (build version)
28+
shell: bash
2729
run: |
2830
echo 'Setting ApplicationDisplayVersion (build version) to ${{ inputs.displayVersion }}'
2931
sed -rn 's|(<ApplicationDisplayVersion>)(.*)(</ApplicationDisplayVersion>)|Old: \1\2\3|p' ${{ inputs.csproj }}

0 commit comments

Comments
 (0)