@@ -2,9 +2,9 @@ name: Build
2
2
3
3
on :
4
4
push :
5
- branches : [ master ]
5
+ branches : [main ]
6
6
pull_request :
7
- branches : [ master ]
7
+ branches : [main ]
8
8
9
9
jobs :
10
10
update_release_draft :
17
17
Release_body : ${{ steps.create_release.outputs.body}}
18
18
Release_html_url : ${{ steps.create_release.outputs.html_url}}
19
19
Release_upload_url : ${{ steps.create_release.outputs.upload_url}}
20
-
20
+
21
21
permissions :
22
22
contents : write
23
23
40
40
setCommonVars : true
41
41
42
42
- uses : release-drafter/release-drafter@v6
43
- if : github.ref == 'refs/heads/master ' # Running this action only for master branch
43
+ if : github.ref == 'refs/heads/main ' # Running this action only for main branch
44
44
id : create_release
45
45
env :
46
46
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
@@ -61,76 +61,76 @@ jobs:
61
61
Release_body : ${{ needs.update_release_draft.outputs.Release_body }}
62
62
63
63
steps :
64
- - name : Dump needs context
65
- env :
66
- NEEDS_CONTEXT : ${{ toJson(needs) }}
67
- run : echo "$NEEDS_CONTEXT"
68
-
69
- - name : Checkout
70
- uses : actions/checkout@v4
71
- with :
72
- fetch-depth : 0
73
-
74
- - name : Setup MSBuild.exe
75
-
76
-
77
- - name : NuGet Restore
78
- run : nuget restore
79
-
80
- - name : Build
81
- run : msbuild PowerShellWixExtension.sln
82
- # NBGV is run as part of the build, so actions after here have access to NBGV_ env variables.
83
-
84
- # For some reason, running msiexec from Pester doesn't work quite right.
85
- - name : msiexec
86
- run : |
87
- Start-Process msiexec.exe -Wait -ArgumentList "/i Tests\PowerShellWixInlineScriptTest\bin\Release\PowerShellWixInlineScriptTest.msi /q /liwearucmopvx ${{ github.workspace }}\inlinescript-install.log"
88
- Start-Process msiexec.exe -Wait -ArgumentList "/x Tests\PowerShellWixInlineScriptTest\bin\Release\PowerShellWixInlineScriptTest.msi /q /liwearucmopvx ${{ github.workspace }}\inlinescript-uninstall.log"
89
- Start-Process msiexec.exe -Wait -ArgumentList "/i Tests\PowerShellWixTest\bin\Release\PowerShellWixTest.msi /q /liwearucmopvx ${{ github.workspace }}\script-install.log"
90
- Start-Process msiexec.exe -Wait -ArgumentList "/x Tests\PowerShellWixTest\bin\Release\PowerShellWixTest.msi /q /liwearucmopvx ${{ github.workspace }}\script-uninstall.log"
91
-
92
- - name : Pester
93
- id : test_module
94
- uses : zyborg/pester-tests-report@v1
95
- with :
96
- include_paths : tests
97
- github_token : ${{ secrets.GITHUB_TOKEN }}
98
- tests_fail_step : true
99
-
100
- - uses : actions/upload-artifact@v4
101
- if : ${{ always() }}
102
- with :
103
- name : test logs
104
- path : ${{ github.workspace }}\**\*.log
105
-
106
- - name : Pack
107
- run : nuget pack .\PowerShellWixExtension.nuspec -Version "$env:NBGV_NuGetPackageVersion" -Properties "Configuration=$env:Configuration;releasenotes=$env:Release_body"
108
-
109
- - uses : actions/upload-artifact@v4
110
- with :
111
- name : nupkg
112
- path : ${{ github.workspace }}\PowerShellWixExtension.${{ env.NBGV_NuGetPackageVersion }}.nupkg
113
-
114
- - name : Remove existing release asset
115
- uses : flcdrg/remove-release-asset-action@v4
116
- if : github.ref == 'refs/heads/master ' # Running this action only for master branch
117
- with :
118
- # The release id to remove asset from
119
- release_id : ${{ needs.update_release_draft.outputs.Release_Id }}
120
- # The name of the asset you want to remove
121
- asset_name : PowerShellWixExtension.nupkg
122
- env :
123
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
124
- continue-on-error : true
125
-
126
- - name : Upload Release Asset
127
- id : upload-release-asset
128
- uses : actions/upload-release-asset@v1
129
- if : github.ref == 'refs/heads/master ' # Running this action only for master branch
130
- env :
131
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
132
- with :
133
- upload_url : ${{ needs.update_release_draft.outputs.Release_upload_url }}
134
- asset_path : ${{ github.workspace }}\PowerShellWixExtension.${{ env.NBGV_NuGetPackageVersion }}.nupkg
135
- asset_name : PowerShellWixExtension.nupkg
136
- asset_content_type : application/octet-stream
64
+ - name : Dump needs context
65
+ env :
66
+ NEEDS_CONTEXT : ${{ toJson(needs) }}
67
+ run : echo "$NEEDS_CONTEXT"
68
+
69
+ - name : Checkout
70
+ uses : actions/checkout@v4
71
+ with :
72
+ fetch-depth : 0
73
+
74
+ - name : Setup MSBuild.exe
75
+
76
+
77
+ - name : NuGet Restore
78
+ run : nuget restore
79
+
80
+ - name : Build
81
+ run : msbuild PowerShellWixExtension.sln
82
+ # NBGV is run as part of the build, so actions after here have access to NBGV_ env variables.
83
+
84
+ # For some reason, running msiexec from Pester doesn't work quite right.
85
+ - name : msiexec
86
+ run : |
87
+ Start-Process msiexec.exe -Wait -ArgumentList "/i Tests\PowerShellWixInlineScriptTest\bin\Release\PowerShellWixInlineScriptTest.msi /q /liwearucmopvx ${{ github.workspace }}\inlinescript-install.log"
88
+ Start-Process msiexec.exe -Wait -ArgumentList "/x Tests\PowerShellWixInlineScriptTest\bin\Release\PowerShellWixInlineScriptTest.msi /q /liwearucmopvx ${{ github.workspace }}\inlinescript-uninstall.log"
89
+ Start-Process msiexec.exe -Wait -ArgumentList "/i Tests\PowerShellWixTest\bin\Release\PowerShellWixTest.msi /q /liwearucmopvx ${{ github.workspace }}\script-install.log"
90
+ Start-Process msiexec.exe -Wait -ArgumentList "/x Tests\PowerShellWixTest\bin\Release\PowerShellWixTest.msi /q /liwearucmopvx ${{ github.workspace }}\script-uninstall.log"
91
+
92
+ - name : Pester
93
+ id : test_module
94
+ uses : zyborg/pester-tests-report@v1
95
+ with :
96
+ include_paths : tests
97
+ github_token : ${{ secrets.GITHUB_TOKEN }}
98
+ tests_fail_step : true
99
+
100
+ - uses : actions/upload-artifact@v4
101
+ if : ${{ always() }}
102
+ with :
103
+ name : test logs
104
+ path : ${{ github.workspace }}\**\*.log
105
+
106
+ - name : Pack
107
+ run : nuget pack .\PowerShellWixExtension.nuspec -Version "$env:NBGV_NuGetPackageVersion" -Properties "Configuration=$env:Configuration;releasenotes=$env:Release_body"
108
+
109
+ - uses : actions/upload-artifact@v4
110
+ with :
111
+ name : nupkg
112
+ path : ${{ github.workspace }}\PowerShellWixExtension.${{ env.NBGV_NuGetPackageVersion }}.nupkg
113
+
114
+ - name : Remove existing release asset
115
+ uses : flcdrg/remove-release-asset-action@v4
116
+ if : github.ref == 'refs/heads/main ' # Running this action only for main branch
117
+ with :
118
+ # The release id to remove asset from
119
+ release_id : ${{ needs.update_release_draft.outputs.Release_Id }}
120
+ # The name of the asset you want to remove
121
+ asset_name : PowerShellWixExtension.nupkg
122
+ env :
123
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
124
+ continue-on-error : true
125
+
126
+ - name : Upload Release Asset
127
+ id : upload-release-asset
128
+ uses : actions/upload-release-asset@v1
129
+ if : github.ref == 'refs/heads/main ' # Running this action only for master branch
130
+ env :
131
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
132
+ with :
133
+ upload_url : ${{ needs.update_release_draft.outputs.Release_upload_url }}
134
+ asset_path : ${{ github.workspace }}\PowerShellWixExtension.${{ env.NBGV_NuGetPackageVersion }}.nupkg
135
+ asset_name : PowerShellWixExtension.nupkg
136
+ asset_content_type : application/octet-stream
0 commit comments