View Single Post
10-24-18, 01:50 PM   #52
Rythal
Featured Artist
Featured
Join Date: Aug 2012
Posts: 1,458
Originally Posted by p3lim View Post
That should work fine, although I'd escape the punctuations (many regex parsers are picky).
Could you show me your .travis.yml file?
Code:
sudo: false
language: c
 
addons:
  apt:
    packages:
    - pandoc
 
script: curl -s https://raw.githubusercontent.com/BigWigsMods/packager/master/release.sh | bash
 
branches:
  only:
  - ^v\d+\.\d+\.\d+(\.\d+)?$
Just tried it with the escaped punctuation but still got not included by config error.

Bah I think I see the problem already... forgot the /'s
  Reply With Quote