I have a GitHub Action that runs two Dagger calls sequentially. Now I want to run one Dagger call that triggers two Dagger actions. However, these two actions do not depend on each other and just return error, so Dagger will run them in parallel. This results in a race condition. Does anyone know how I can combine two Dagger calls with CLI in one Dagger call but run them sequentially?
Something like this
func (m *Ci) Ci() error {
m.Update("test")
m.Update("stg")
return nil
}