mirror of
https://github.com/danog/dart-sass.git
synced 2025-01-05 20:38:31 +01:00
6e6bfd350c
[skip ci]
15 lines
376 B
Bash
Executable File
15 lines
376 B
Bash
Executable File
#!/bin/bash -e
|
|
# Copyright 2018 Google Inc. Use of this source code is governed by an MIT-style
|
|
# license that can be found in the LICENSE file or at
|
|
# https://opensource.org/licenses/MIT.
|
|
|
|
echo 'Deploying to pub.'
|
|
|
|
source tool/travis/utils.sh
|
|
|
|
decrypt_credentials
|
|
mkdir -p ~/.pub-cache
|
|
tar xfO credentials.tar pub > ~/.pub-cache/credentials.json
|
|
|
|
travis_cmd pub lish --force
|