File tree 2 files changed +20
-2
lines changed
2 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 26
26
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
27
27
- uses : actions/checkout@v2
28
28
29
+ # Checks-out the gimme-a-man repo
30
+ - uses : actions/checkout@v2
31
+ with :
32
+ # Repository name with owner. For example, actions/checkout
33
+ # Default: ${{ github.repository }}
34
+ repository : mbideau/gimme-a-man
35
+ # Relative path under $GITHUB_WORKSPACE to place the repository
36
+ path : gimme-a-man
37
+
29
38
# Install required packages dependencies
30
39
- name : Install required packages dependencies
31
40
run : |
34
43
35
44
# Runs make
36
45
- name : Run make
37
- run : make
46
+ run : GIMME_A_MAN="$(pwd)"/gimme-a-man/gimme_a_man.sh make
Original file line number Diff line number Diff line change 37
37
# Relative path under $GITHUB_WORKSPACE to place the repository
38
38
path : shunit2
39
39
40
+ # Checks-out the gimme-a-man repo
41
+ - uses : actions/checkout@v2
42
+ with :
43
+ # Repository name with owner. For example, actions/checkout
44
+ # Default: ${{ github.repository }}
45
+ repository : mbideau/gimme-a-man
46
+ # Relative path under $GITHUB_WORKSPACE to place the repository
47
+ path : gimme-a-man
48
+
40
49
# Install required packages dependencies
41
50
- name : Install required packages dependencies
42
51
run : |
45
54
46
55
# Build the program
47
56
- name : Building the program
48
- run : make
57
+ run : GIMME_A_MAN="$(pwd)"/gimme-a-man/gimme_a_man.sh make
49
58
50
59
# Create a BTRFS file
51
60
- name : Creating an image file with a BTRFS filesystem
You can’t perform that action at this time.
0 commit comments