Skip to content

Commit

Permalink
Update main_build-maui.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
LanceMcCarthy committed Aug 22, 2023
1 parent 83f6d68 commit bf44ccd
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/main_build-maui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
run: |
$buildDay = Get-Date -Format "yyyy.Mdd"
$ver = $buildDay + "." + $env:GITHUB_RUN_NUMBER + ".0"
echo "::set-output name=APP_VERSION::$ver"
echo "APP_VERSION=$ver" >> $GITHUB_OUTPUT
- name: Install MAUI workloads (required for GitHub-hosted runners)
shell: pwsh
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
run: |
$buildDay = Get-Date -Format "yyyy.Mdd"
$ver = $buildDay + "." + $env:GITHUB_RUN_NUMBER + ".0"
echo "::set-output name=APP_VERSION::$ver"
echo "APP_VERSION=$ver" >> $GITHUB_OUTPUT
- name: Install MAUI workloads (required for GitHub-hosted runners)
shell: pwsh
Expand Down Expand Up @@ -126,8 +126,7 @@ jobs:
run: |
buildDay=`date +%Y.%m%d`
echo $buildDay
runNum=${{ env.GITHUB_RUN_NUMBER }}
ver="${buildDay}.${runNum}.0"
ver="${buildDay}.${GITHUB_RUN_NUMBER}.0"
echo $ver
echo "APP_VERSION=$ver" >> $GITHUB_ENV
Expand Down Expand Up @@ -170,8 +169,7 @@ jobs:
run: |
buildDay=`date +%Y.%m%d`
echo $buildDay
runNum=${{ env.GITHUB_RUN_NUMBER }}
ver="${buildDay}.${runNum}.0"
ver="${buildDay}.${GITHUB_RUN_NUMBER}.0"
echo $ver
echo "APP_VERSION=$ver" >> $GITHUB_ENV
Expand Down

0 comments on commit bf44ccd

Please sign in to comment.