File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed
Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change 1010 # Allows you to run this workflow manually from the Actions tab
1111 workflow_dispatch :
1212
13- # A workflow run is made up of one or more jobs that can run sequentially or in parallel
1413jobs :
15- # This workflow contains a single job called "build"
1614 build :
17- # The type of runner that the job will run on
15+
1816 runs-on : ubuntu-latest
1917
20- # Steps represent a sequence of tasks that will be executed as part of the job
2118 steps :
22- # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2319 - uses : actions/checkout@v2
24-
25- # Runs a single command using the runners shell
26- - name : Run a one-line script
27- run : echo Hello, world!
20+ - name : install rpm tools cpio and wget
21+ run : sudo apt install rpm cpio wget
2822
2923 # Runs a set of commands using the runners shell
3024 - name : Run a multi-line script
You can’t perform that action at this time.
0 commit comments