mirror of
https://github.com/huhu/rust-search-extension
synced 2024-11-15 08:07:08 +00:00
30 lines
No EOL
449 B
YAML
30 lines
No EOL
449 B
YAML
language: generic
|
|
|
|
|
|
before_install:
|
|
- npm install -g web-ext
|
|
|
|
# Do some testings ...
|
|
script: true
|
|
|
|
before_deploy:
|
|
- web-ext build -s extension -o
|
|
|
|
deploy:
|
|
provider: releases
|
|
api_key:
|
|
# Generate secure token with travis encrypt --pro
|
|
secure: ""
|
|
file_glob: true
|
|
file: web-ext-artifacts/*.zip
|
|
skip_cleanup: true
|
|
on:
|
|
tags: true
|
|
|
|
branches:
|
|
only:
|
|
- "/^v\\d+\\.\\d+\\.\\d+.*$/"
|
|
|
|
notifications:
|
|
email:
|
|
on_success: never |