12 lines
235 B
Text
12 lines
235 B
Text
|
workflow "Push" {
|
||
|
on = "push"
|
||
|
resolves = ["Generate formulae.brew.sh"]
|
||
|
}
|
||
|
|
||
|
action "Generate formulae.brew.sh" {
|
||
|
uses = "docker://linuxbrew/brew"
|
||
|
runs = "bash"
|
||
|
args = [".github/main.workflow.sh"]
|
||
|
secrets = ["GITHUB_TOKEN"]
|
||
|
}
|