File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 34
34
# the same job (as shown below).
35
35
- export : export GREETING="Hello, world!"
36
36
- hello : echo $GREETING
37
+ # Metadata is a structured key/value storage of relevant information about a build.
38
+ # Metadata will be shared with subsequent builds in the same workflow.
39
+ # You can set any key using the command "meta set <key> <value>".
40
+ - set-metadata : meta set example.coverage 99.95
37
41
# We define another Job called "second_job". In this Job, we intend on running
38
42
# a different set of commands.
39
43
second_job :
43
47
# actions. This is incredibly useful when you need to perform a multi-line
44
48
# command.
45
49
- make_target : make greetings
50
+ # You can get metadata that was set using the command "meta get <key>".
51
+ - get-metadata : meta get example
46
52
# The "run_arbitrary_script" executes a script. This is an alternative to
47
53
# a Makefile target where you want to run a series of commands related to
48
54
# this step
You can’t perform that action at this time.
0 commit comments