Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

parallel-shell-actions

// proposed usage
name: Proposed calling convention

jobs:
  some-job:
    runs-on: ubuntu-latest
    steps:
    - .....
    - .....
    - name: "run (a, b, c) and (d, e, f) concurrently"
      uses: thisrepo/parallel-shell-actions@v1
      with:
        commands: |
          [
            {
              "shell": "bash",
              "commands": [
                "echo a",
                "echo b",
                "echo c"
              ]
            },
            {
              "shell": "bash",
              "commands": [
                "echo d",
                "echo e",
                "echo f"
              ]
            }
          ]
    - .....

About

[WIP] run a multiple shell command in a single step github actions

Resources

Stars

Watchers

Forks

Releases

Packages

Used by

Contributors

Languages