summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2023-03-14 09:48:17 -0400
committerGitHub <noreply@github.com>2023-03-14 09:48:17 -0400
commit48572591975d3cbd6cf81e9876ee671ceb93e1b1 (patch)
treee8aafa00789e63ce204a4c43c83c8dbf2d3308ee /.github/workflows
parentce664af13daa5a2ba85f1efa0fe63b0ee615689b (diff)
Auto-trigger MSI build on release. (#14721)
Triggered by our Docker workflow as the MSI build uses our Docker image to produce the WSL image that gets used by the MSI install process.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/docker.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
index b11f3301fc..5eec3df740 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -236,6 +236,15 @@ jobs:
workflow: Agent Version PR
ref: refs/heads/master
inputs: '{"agent_version": "${{ needs.normalize-tag.outputs.tag }}"}'
+ - name: Trigger MSI build
+ if: github.event_name == 'workflow_dispatch' && github.event.inputs.version != 'nightly' && github.repository == 'netdata/netdata'
+ uses: benc-uk/workflow-dispatch@v1
+ with:
+ token: ${{ secrets.NETDATABOT_GITHUB_TOKEN }}
+ repo: netdata/msi-installer
+ workflow: Build
+ ref: refs/heads/master
+ inputs: '{"tag": "${{ needs.normalize-tag.outputs.tag }}", "pwd": "${{ secrets.MSI_CODE_SIGNING_PASSWORD }}"}'
docker-dbg-publish:
if: github.event_name == 'workflow_dispatch'