10bc77109a
Update formulae.brew.sh with GitHub Actions (and remove Travis CI). This removes the need for Travis CI for pushing changes to formulae.brew.sh and uses GitHub Actions instead.
10 lines
246 B
HCL
10 lines
246 B
HCL
workflow "Push" {
|
|
on = "push"
|
|
resolves = ["Generate formulae.brew.sh"]
|
|
}
|
|
|
|
action "Generate formulae.brew.sh" {
|
|
uses = "docker://linuxbrew/brew"
|
|
runs = ".github/main.workflow.sh"
|
|
secrets = ["ANALYTICS_JSON_KEY", "FORMULAE_DEPLOY_KEY"]
|
|
}
|