mirror of
https://github.com/danog/dart-sass.git
synced 2024-11-27 04:34:59 +01:00
Use Travis auth info to deploy to Homebrew (#296)
This commit is contained in:
parent
6fd0f6d6e3
commit
ff532f9710
@ -530,8 +530,14 @@ update_homebrew() async {
|
||||
],
|
||||
workingDirectory: "build/homebrew-sass");
|
||||
|
||||
var username = _environment('GITHUB_USER');
|
||||
var password = _environment('GITHUB_AUTH');
|
||||
await runAsync("git",
|
||||
arguments: ["push"], workingDirectory: "build/homebrew-sass");
|
||||
arguments: [
|
||||
"push",
|
||||
"https://$username:$password@github.com/sass/homebrew-sass.git"
|
||||
],
|
||||
workingDirectory: "build/homebrew-sass");
|
||||
}
|
||||
|
||||
@Task('Release the current version as to GitHub.')
|
||||
|
Loading…
Reference in New Issue
Block a user