Update main.workflow* (#37010)
This commit is contained in:
parent
0f598dec43
commit
9f349ab6a9
2 changed files with 3 additions and 3 deletions
3
.github/main.workflow
vendored
3
.github/main.workflow
vendored
|
@ -5,7 +5,6 @@ workflow "Push" {
|
|||
|
||||
action "Generate formulae.brew.sh" {
|
||||
uses = "docker://linuxbrew/brew"
|
||||
runs = "bash"
|
||||
args = [".github/main.workflow.sh"]
|
||||
runs = ".github/main.workflow.sh"
|
||||
secrets = ["GITHUB_TOKEN"]
|
||||
}
|
||||
|
|
3
.github/main.workflow.sh
vendored
3
.github/main.workflow.sh
vendored
|
@ -3,7 +3,8 @@
|
|||
set -e
|
||||
|
||||
# take ownership as current user (in case it's linuxbrew)
|
||||
sudo chown -R $USER .
|
||||
sudo mkdir ~/.cache
|
||||
sudo chown -R $USER . ~/.cache
|
||||
|
||||
# create stubs so build dependencies aren't incorrectly flagged as missing
|
||||
for i in python svn unzip xz
|
||||
|
|
Loading…
Reference in a new issue