@@ -48,37 +48,31 @@ jobs:
48
48
with :
49
49
fetch-depth : 0
50
50
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
+
51
59
- name : Set Nightly Version Numbers
52
60
if : ${{ github.event_name != 'push' }}
53
61
run : |
54
62
echo "mdixVersion=${{ env.mdixVersion }}-ci${{ github.run_number }}" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf-8 -Append
55
63
echo "mdixColorsVersion=${{ env.mdixColorsVersion }}-ci${{ github.run_number }}" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf-8 -Append
56
64
echo "mdixMahAppsVersion=${{ env.mdixMahAppsVersion }}-ci${{ github.run_number }}" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf-8 -Append
57
65
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
67
69
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 }}"
70
74
nugetKey : ${{ secrets.PAT }}
71
75
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
-
82
76
- name : Update latest tag
83
77
if : ${{ github.event_name != 'push' }}
84
78
run : |
0 commit comments