File: .travis.yml

package info (click to toggle)
fonts-fork-awesome 1.2.0%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 4,256 kB
  • sloc: makefile: 38; sh: 24
file content (31 lines) | stat: -rw-r--r-- 433 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
language:
  - ruby
  - node_js

install:
  - bundle install
  - npm install

script:
  - npm run build

deploy:
  - provider: pages
    skip-cleanup: true
    github-token: $GITHUB_TOKEN
    keep-history: true
    local-dir: _site
    on:
      branch: master
      tags: true
  - provider: npm
    email: $NPM_EMAIL
    api_key: $NPM_TOKEN
    on:
      branch: master
      tags: true

# blocklist
branches:
  except:
  - gh-pages