for, foreach and other loops in github-actions

Viewed 5899

There is a "if" available in github-actions.

Is there any way to do use loops? (for, foreach, while , ...)

something like

- foreach val in ['val1', 'val2']
1 Answers

In one word - no. But there is a matrix mechanism that probably will help you. Share more details about the problem you want to solve using loops.

Related