mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-17 18:40:33 +00:00
29d6111819
* Semantic versioning * Access env variable correctly * Invoke semantic release * Not an npm package * fix(pencil): Testing making a patch release * c: support feature and breaking as tags
41 lines
894 B
YAML
41 lines
894 B
YAML
version: '{branch}-{build}'
|
|
|
|
#init:
|
|
# - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
|
|
|
|
#on_finish:
|
|
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
|
|
|
|
install:
|
|
- set PATH=C:\Ruby25-x64\bin;%PATH%
|
|
- cd docs
|
|
- gem install bundler -v 1.17.3
|
|
- bundle install
|
|
- cd ..
|
|
- cp c:\Tools\curl\bin\libcurl.dll C:\Ruby25-x64\bin
|
|
|
|
#build:
|
|
# project: Mirror/Networking.sln
|
|
# verbosity: minimal
|
|
|
|
# Do not build on tags (GitHub only)
|
|
skip_tags: true
|
|
|
|
build_script:
|
|
- cd docs
|
|
- bundle exec jekyll build
|
|
- ruby checksite.rb
|
|
- cd ..
|
|
|
|
artifacts:
|
|
- path: Assets
|
|
name: Mirror
|
|
|
|
image: Visual Studio 2017
|
|
|
|
before_deploy:
|
|
- npm install -g semantic-release@15
|
|
|
|
deploy_script:
|
|
- semantic-release
|