Fix handling of post-release workflows triggered by Docker workflow. (#17306)
Austin S. Hemmelgarn committed
Apr 1, 2024 at 11:26 UTC
9e34ec1a093c685581444ac452d852cd9867b2ed
1 file changed
+2
-2
.github/workflows/docker.yml
+2
-2
@@ -690,7 +690,7 @@ jobs:
690
repo: netdata/helmchart
691
workflow: Agent Version PR
692
ref: refs/heads/master
693
- inputs: '{"agent_version": "${{ needs.gen-tags.outputs.tags }}"}'
693
+ inputs: '{"agent_version": "${{ inputs.version }}"}'
694
- name: Trigger MSI build
695
if: github.event_name == 'workflow_dispatch' && github.event.inputs.version != 'nightly' && github.repository == 'netdata/netdata'
696
id: trigger-msi
@@ -700,7 +700,7 @@ jobs:
700
repo: netdata/msi-installer
701
workflow: Build
702
ref: refs/heads/master
703
- inputs: '{"tag": "${{ needs.gen-tags.outputs.tags }}", "pwd": "${{ secrets.MSI_CODE_SIGNING_PASSWORD }}"}'
703
+ inputs: '{"tag": "stable", "pwd": "${{ secrets.MSI_CODE_SIGNING_PASSWORD }}"}'
704
- name: Failure Notification
705
uses: rtCamp/action-slack-notify@v2
706
env: