Skip to content

Commit 5d947f6

Browse files
committed
Final updates to release yaml
1 parent 611c2f2 commit 5d947f6

File tree

1 file changed

+15
-21
lines changed

1 file changed

+15
-21
lines changed

.github/workflows/release.yml

Lines changed: 15 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -48,37 +48,31 @@ jobs:
4848
with:
4949
fetch-depth: 0
5050

51+
- name: Build and Test
52+
uses: ./.github/actions/build-and-test
53+
timeout-minutes: 20
54+
with:
55+
solution: ${{ env.solution }}
56+
buildConfiguration: ${{ env.buildConfiguration }}
57+
nugetKey: ${{ secrets.PAT }}
58+
5159
- name: Set Nightly Version Numbers
5260
if: ${{ github.event_name != 'push' }}
5361
run: |
5462
echo "mdixVersion=${{ env.mdixVersion }}-ci${{ github.run_number }}" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf-8 -Append
5563
echo "mdixColorsVersion=${{ env.mdixColorsVersion }}-ci${{ github.run_number }}" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf-8 -Append
5664
echo "mdixMahAppsVersion=${{ env.mdixMahAppsVersion }}-ci${{ github.run_number }}" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf-8 -Append
5765
58-
- name: Just Testing
59-
run: |
60-
echo ${{ env.mdixVersion }}
61-
echo ${{ env.mdixColorsVersion }}
62-
echo ${{ env.mdixMahAppsVersion }}
63-
64-
- name: Build and Test
65-
uses: ./.github/actions/build-and-test
66-
timeout-minutes: 20
66+
- name: Push Artifacts
67+
uses: ./.github/actions/push-artifacts
68+
timeout-minutes: 10
6769
with:
68-
solution: ${{ env.solution }}
69-
buildConfiguration: ${{ env.buildConfiguration }}
70+
mdixVersion: ${{ env.mdixVersion }}-ci${{ github.run_number }}
71+
mdixColorsVersion: ${{ env.mdixColorsVersion }}-ci${{ github.run_number }}
72+
mdixMahAppsVersion: ${{ env.mdixMahappsVersion }}-ci${{ github.run_number }}
73+
demoAppPath: "MainDemo.Wpf/bin/${{ env.buildConfiguration }}"
7074
nugetKey: ${{ secrets.PAT }}
7175

72-
# - name: Push Artifacts
73-
# uses: ./.github/actions/push-artifacts
74-
# timeout-minutes: 10
75-
# with:
76-
# mdixVersion: ${{ env.mdixVersion }}-ci${{ github.run_number }}
77-
# mdixColorsVersion: ${{ env.mdixColorsVersion }}-ci${{ github.run_number }}
78-
# mdixMahAppsVersion: ${{ env.mdixMahappsVersion }}-ci${{ github.run_number }}
79-
# demoAppPath: "MainDemo.Wpf/bin/${{ env.buildConfiguration }}"
80-
# nugetKey: ${{ secrets.PAT }}
81-
8276
- name: Update latest tag
8377
if: ${{ github.event_name != 'push' }}
8478
run: |

0 commit comments

Comments
 (0)