Skip to content

Commit

Permalink
🔧 (main.yml): update workflow condition to always run steps regardles…
Browse files Browse the repository at this point in the history
…s of nkdAgility_Ring value

The condition for running the steps is simplified to always run if the previous steps are successful. The previous condition checking for `nkdAgility_Ring != 'Canary'` is commented out, likely to ensure the steps run in all environments for broader testing or deployment purposes.
  • Loading branch information
MrHinsh committed Aug 7, 2024
1 parent c347098 commit d06b4a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ jobs:
HasChanged_docs: ${{ needs.Setup.outputs.HasChanged_docs }}
HasChanged_automation: ${{ needs.Setup.outputs.HasChanged_automation }}
needs: [build, Setup]
if: ${{ success() && ( needs.Setup.outputs.nkdAgility_Ring != 'Canary' ) }}
if: ${{ success() }} #&& ( needs.Setup.outputs.nkdAgility_Ring != 'Canary' )
steps:
- uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit d06b4a1

Please sign in to comment.